aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 792bdb24070f123e7ff8696a91b70938be60a406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
	"manifest_version": 2,

	"name": "YouTube Tooltipise Titles",
	"description": "Add title tooltips to video titles on YouTube so you can read them even after ellipsis truncation",
	"version": "0.0.1",
	
	"content_scripts": [
		{
			"matches": ["*://*.youtube.com/*"],
			"js": ["tooltipise.js"]
		}
	],
	
	"permissions": [
		"*://*.youtube.com/*"
	]
}