-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
23 lines (23 loc) · 916 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
{
"name": "Tab Logger",
"description": "Makes tab usage more efficient.",
"version": "3.0",
"permissions": ["storage", "unlimitedStorage", "history", "contextMenus", "tabs", "webRequest", "webNavigation", "<all_urls>"],
"web_accessible_resources": ["src/content/suspended.html"],
"background": {
"scripts": ["src/firstrun.js", "src/util.js", "src/filesystem.js", "src/background.js", "src/events.js", "src/stats.js", "src/crypto/jsbn.js", "src/crypto/prng4.js", "src/crypto/rng.js", "src/crypto/rsa.js", "src/crypto/sha256.js"]
},
"icons": {
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": "icons/icon48.png",
"default_popup": "src/ui/popup.html"
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["src/content/content.js"]
}],
"manifest_version": 2
}