-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
46 lines (46 loc) · 1.01 KB
/
manifest-firefox.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"manifest_version": 2,
"version": "1.10.1",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"icons": {
"64": "icons/hideshort-64.png"
},
"permissions": [
"storage"
],
"optional_permissions": [
"tabs"
],
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"./src/HidingShortsMore.js",
"./src/main.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": [ "./src/background/background.js" ]
},
"browser_specific_settings": {
"gecko": {
"id": "{88ebde3a-4581-4c6b-8019-2a05a9e3e938}",
"data_collection_permissions": {
"required": ["none"]
}
}
},
"default_locale": "en",
"browser_action": {
"default_icon":{
"64":"icons/hideshort-64.png"
},
"default_title": "Hide-Shorts",
"default_popup": "./src/menu/popup.html"
}
}