-
Notifications
You must be signed in to change notification settings - Fork 43
/
manifest.json
executable file
·53 lines (53 loc) · 1.05 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
{
"name": "Chrome Grid Highlighter",
"version": "0.0.1",
"manifest_version": 2,
"description": "Chrome Grid Highlighter",
"homepage_url": "https://twitter.com/ademilter",
"icons": {
"16": "icons/icon16.png",
"19": "icons/icon19.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16-gray.png",
"19": "icons/icon19-gray.png",
"48": "icons/icon48-gray.png",
"128": "icons/icon128-gray.png"
}
},
"background": {
"scripts": [
"src/background.js"
],
"persistent": true
},
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"src/inject.css"
],
"js": [
"src/jquery.min.js",
"src/inject.js",
"src/detector.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"storage"
]
}