-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·73 lines (60 loc) · 1.35 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"description": "Adds a browser action icon to the toolbar that allow to dispaly an horizontal ruler for web development purposes",
"manifest_version": 2,
"name": "DevRuler",
"version": "1.0.2",
// "homepage_url": "",
"author": "Vince Damiani",
"icons": {
"48": "icons/ruler-48.png"
},
"permissions": [
"<all_urls>", //very important, insertCss would not work without it
"activeTab",
"browsingData",
"notifications",
"storage",
"tabs"
],
"browser_action": {
"default_icon": "icons/ruler-32.png",
"theme_icons": [{
"light": "icons/ruler-light-32.png",
"dark": "icons/ruler-32.png",
"size": 32
}],
"default_title": "DevRuler",
"default_popup": "popup/ruler_popup.html"
},
"page_action": {
"browser_style": true
},
// "content_scripts": [
// {
// // "matches": ["http://*.nytimes.com/*"],
// // "css": ["myStyles.css"],
// "matches": [
// "<all_urls>"
// ],
// "js": ["js/onload.js"]
// }
// ],
"options_ui": {
"page": "options/options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
// "applications": {
// "gecko": {
// "id": "[email protected]"
// }
// },
"background": {
"scripts": [
"onupdate.js"
]
}
}