-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
40 lines (39 loc) · 1.25 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.1",
"name": "Multi Function Chrome Extension",
"manifest_version": 2,
"short_name": "MultiFunctionChromeExtension",
"description": "Multi Function Chrome Extension night mode, clear cookies etc",
"permissions": ["tabs","storage", "<all_urls>", "contextMenus","topSites"],
"web_accessible_resources": ["css/*.css"],
"homepage_url": "https://www.1dollarcart.com/",
"options_page": "templates/options.html",
"offline_enabled": true,
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon.png"
},
"browser_action": {
"default_icon" : "icons/icon.png",
"default_popup" : "templates/popup.html"
},
"content_scripts": [
{
"all_frames": true,
"match_about_blank": true,
"matches": ["<all_urls>"],
"run_at": "document_start",
"exclude_globs": ["*/chrome/newtab*"],
"js": ["js/main.js"]
},
{
"all_frames": true,
"match_about_blank": true,
"matches": ["<all_urls>"],
"run_at": "document_start",
"exclude_globs": ["*/chrome/newtab*"],
"css": ["css/universal.css"]
}
]
}