-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (30 loc) · 934 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"manifest_version": 2,
"name": "Url Mover",
"description": "This extension allows you to redirect urls to other locations.",
"version": "1.0",
"options_page": "options.html",
// http://www.softicons.com/free-icons/transport-icons/standard-road-icons-by-aha-soft/bulldozer-icon
"icons": {
"16": "bulldozer16.png",
"48": "bulldozer48.png",
"128": "bulldozer128.png"
},
// Note: Because of bug 134315, you must declare any images you
// want to use with createNotification() as a web accessible resource.
"web_accessible_resources": [
"bulldozer48.png"
],
// "browser_action": {
// "default_icon": "bulldozer16.png",
// "default_popup": "popup.html"
// },
"permissions": [
"webRequest",
"webRequestBlocking",
"http://*/*",
"https://*/*",
"storage",
"notifications"
]
}