forked from frostybiscuit/transparent-zen
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathmanifest.json
More file actions
74 lines (74 loc) · 1.89 KB
/
manifest.json
File metadata and controls
74 lines (74 loc) · 1.89 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"manifest_version": 2,
"name": "Zen Internet",
"version": "3.1.2",
"description": "Make the internet feel native and elegant. Zen Internet is a browser extension that enhances your browsing experience by providing a clean and minimalistic interface with transparency and a focus on content. Customize the features in the addon popup.",
"browser_specific_settings": {
"gecko": {
"id": "{91aa3897-2634-4a8a-9092-279db23a7689}"
}
},
"icons": {
"48": "assets/images/logo_48.png",
"96": "assets/images/logo_96.png"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"<all_urls>",
"webNavigation",
"webRequest",
"webRequestBlocking"
],
"browser_action": {
"default_popup": "popup/popup.html",
"default_title": "Zen Internet",
"default_icon": {
"48": "assets/images/logo_48.png",
"96": "assets/images/logo_96.png"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content-script.js"],
"run_at": "document_start",
"all_frames": false
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"web_accessible_resources": [
"theme.css",
"data-viewer/data-viewer.html",
"data-viewer/data-viewer.js",
"data-viewer/data-viewer.css",
"popup/welcome.css",
"popup/welcome.js",
"shared/*",
"assets/images/*"
],
"commands": {
"toggle-current-site": {
"suggested_key": {
"default": "Alt+Shift+U"
},
"description": "Toggle Zen Internet for the current website"
},
"toggle-global-styling": {
"suggested_key": {
"default": "Alt+Shift+G"
},
"description": "Toggle Zen Internet global styling"
},
"toggle-global-transparency": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Toggle Zen Internet global transparency"
}
}
}