Chrome Extensions2013. 5. 12. 14:13

구글이 제공하는 페이지를 사용자가 다룰 수 있습니다.

Override 가능한 페이지( ※ 하나의 확장 프로그램에 한 가지 페이지만 오버라이딩이 가능합니다.)

 - Bookmark Manager

 - History

 - New Tab


EXAMPLE

Manifest.json

1
2
3
4
5
6
7
8
{
    "name": "iGoogle new tab page",
    "version": "0.2",
    "chrome_url_overrides": {
        "newtab": "redirect.html"
    },
    "manifest_version": 2
}


redirect.html

1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
 
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="refresh"content="0;URL=http://www.google.com/ig" >
    <title></title>
</head>
<body>
 
</body>
</html>


새로운 탭이 열릴시에 igoogle 페이지가 연결됩니다.



'Chrome Extensions' 카테고리의 다른 글

[Browser UI]Page Actions  (0) 2013.05.12
[Browser UI]Options Pages  (0) 2013.05.11
[Browser UI]chrome.omnibox  (0) 2013.05.10
[Browser UI]Desktop Notifications  (0) 2013.05.10
[Browser UI]contextMenus  (0) 2013.05.10
Posted by 건깡