blob: bc16745e2ef8273f8e9444887ba758f552478ccf (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
"manifest_version": 2,
"name": "YouTube NoScript shim",
"version": "0.3",
"description": "Use YouTube with NoScript",
"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"
]
}
|