-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathfirefox_manifest.json
53 lines (53 loc) · 1.23 KB
/
firefox_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
{
"manifest_version": 2,
"name": "Clickbait Remover for Youtube",
"short_name": "Clickbait Remover",
"default_locale": "en",
"version": "0.9",
"description": "Replaces thumbnails and modifies titles of videos on youtube.com",
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"js": [
"js/youtube.js"
]
}
],
"background": {
"scripts": [
"js/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"16": "images/clickbait_remover_icon16.png",
"32": "images/clickbait_remover_icon32.png"
},
"default_title": "Clickbait Remover for Youtube",
"default_popup": "options_popup.html"
},
"icons": {
"16": "images/clickbait_remover_icon16.png",
"32": "images/clickbait_remover_icon32.png",
"48": "images/clickbait_remover_icon48.png",
"128": "images/clickbait_remover_icon128.png"
},
"permissions": [
"*://www.youtube.com/*",
"*://m.youtube.com/*",
"*://i.ytimg.com/*",
"webRequest",
"storage",
"webRequestBlocking",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}