forked from domdomegg/hideytthumbnails-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (38 loc) · 777 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
36
37
38
{
"manifest_version": 3,
"version": "2.5.0",
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"homepage_url": "https://github.com/domdomegg/hideytthumbnails-extension",
"browser_specific_settings": {
"gecko": {
"id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}"
},
"gecko_android": {}
},
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png",
"512": "img/icon512.png"
},
"default_locale": "en",
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"common.js",
"inject.js"
],
"run_at": "document_start"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"permissions": [
"storage"
]
}