blob: 3341b4995157ed42fba742a8692e338f3e17aebb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"manifest_version": 2,
"name": "YouTube NoScript shim",
"version": "0.3",
"description": "Use YouTube with NoScript",
"permissions": ["storage"],
"content_scripts": [
{
"matches": ["https://youtube.com/*", "https://www.youtube.com/*"],
"js": ["youtube-noscript-shim.user.js"]
},
{
"matches": ["https://youtube.com/watch*", "https://www.youtube.com/watch*"],
"js": ["viewtube.js"]
}
],
"web_accessible_resources": [
"viewtube.css"
]
}
|