-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
35 lines (33 loc) · 968 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
24
25
26
27
28
29
30
31
32
33
34
35
{
"manifest_version": 2,
"name": "Clear Page",
"version": "1.3",
"content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
"description": "Clear all the irrelevant distraction from your web page for an enjoyable reading experience.",
"icons": {
"16": "icons/icon_16.png",
"32": "icons/icon_32.png",
"48": "icons/icon_48.png",
"128": "icons/icon_128.png"
},
"background" : {
"scripts" : ["ga.js","background.js"],
"persistent": false
},
"browser_action": {
"default_icon": "icons/icon_48.png"
},
"author": "Viplove Prakash",
"homepage_url": "https://nids0810.github.io/clear-page/",
"permissions": ["activeTab"],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+H",
"mac": "Command+Shift+L",
"chromeos": "Ctrl+Shift+C",
"linux": "Ctrl+Shift+C"
}
}
}
}