-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (45 loc) · 1.42 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
{
"name": "Tab Securer",
"description": "An extension to secure your private tabs.",
"version": "1.0",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/favicon-16x16.ico",
"32": "images/favicon-32x32.ico",
"48": "images/android-icon-48x48.ico",
"128": "images/apple-touch-icon-114x114.png"
}
},
"manifest_version": 2,
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
},
"description": "Open the menu option"
}
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"permissions": ["tabs", "activeTab", "storage", "declarativeContent"],
"icons": {
"16": "images/favicon-16x16.ico",
"32": "images/favicon-32x32.ico",
"48": "images/android-icon-48x48.ico",
"128": "images/apple-touch-icon-114x114.png"
},
"content_security_policy": "object-src 'self'; child-src 'self'; default-src 'self' https://media.giphy.com https://cdnjs.buymeacoffee.com https://fonts.googleapis.com; style-src * 'self' 'unsafe-inline';img-src * data:; font-src *;script-src 'self' https://ssl.google-analytics.com;",
"options_page": "options.html",
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_globs": ["chrome-extension://*"],
"js": ["contentScripts/main.js"]
}
],
"incognito": "split"
}