aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 73010bceb008bc07a43556638a43601bc31c6f84 (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.2",
	
	"content_scripts": [
		{
			"matches": ["*://*.youtube.com/*"],
			"js": ["tooltipise.js"]
		}
	],
	
	"permissions": [
		"*://*.youtube.com/*"
	]
}