aboutsummaryrefslogtreecommitdiff
path: root/manifest.json
blob: 34e0193ab9fcff2d860b3fa56f55e6eb9f54e863 (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.5",

    "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"
    ]
}