-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathmanifest.json
64 lines (64 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "ekill",
"version": "1.9.0",
"description": "Remove unwanted elements from a page quickly!",
"manifest_version": 2,
"browser_action": {
"default_icon": {
"16": "skull-and-bones-16.png",
"48": "skull-and-bones-48.png",
"128": "skull-and-bones-128.png"
},
"theme_icons": [{
"light": "skull-and-bones-16-light.png",
"dark": "skull-and-bones-16.png",
"size": 16
}, {
"light": "skull-and-bones-48-light.png",
"dark": "skull-and-bones-48.png",
"size": 48
}]
},
"options_ui": {
"page": "options.html",
"open_in_tab": true,
"browser_style": false,
"chrome_style": false
},
"applications": {
"gecko": {
"id": "{e4326fc5-909b-47e0-a0af-dd3ec180dea5}",
"strict_min_version": "42.0"
}
},
"permissions": [
"activeTab",
"storage",
"unlimitedStorage"
],
"background": {
"scripts": ["js/testable.js", "js/background.js"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["js/testable.js", "js/ekill.js"],
"css": ["css/ekill.css"],
"run_at": "document_end"
}],
"icons": {
"16": "skull-and-bones-16.png",
"48": "skull-and-bones-48.png",
"128": "skull-and-bones-128.png"
},
"web_accessible_resources": [
"changelog.html"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+K",
"mac": "MacCtrl+Shift+K"
}
}
}
}