-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
40 lines (39 loc) · 1.07 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
{
"manifest_version": 2,
"name": "KeepTabs",
"version": "1.0.0",
"version_name": "Initial Release",
"description": "Keep tabs on your tabs.",
"permissions": [
"tabs",
"storage"
],
"browser_action": {
"default_icon": "icons/icon48.png",
"default_popup": "options.html"
},
"background": {
"scripts": ["shared_utils.js", "background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["jquery-3.2.1.min.js", "shared_utils.js", "hotkeys.js", "fuse.js", "tab_search.js"],
"css": ["overlay.css", "tab_search.css"],
"run_at": "document_start",
// Next two lines are necessary for content script to run in iframes.
"match_about_blank": true,
"all_frames": true
}],
"web_accessible_resources": [
"icons/icon128.png"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}