-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
33 lines (33 loc) · 849 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
{
"manifest_version": 2,
"name": "YouTube Geoblock Checker",
"version": "1.1",
"description": "Is a YouTube video blocked in your country? This Firefox extension will tell you where it is blocked, so you can use a VPN to avoid the restriction..",
"icons": {
"48": "icon.png",
"96": "[email protected]"
},
"permissions": [
"activeTab",
"<all_urls>",
"storage"
],
"content_scripts": [{
"matches": [
"https://www.youtube.com/watch*",
"https://www.youtube.com/embed/*"
],
"js": [
"contentScript.js",
"lib/d3.v6.min.js"
]
}],
"options_ui": {
"page": "options.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
}