From 13c1c99efdbd748ecfec81bdd07b556022316e79 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 13 Dec 2014 12:46:47 -0500 Subject: Initial commit. Working. Add manifest.json, add functionality in content script that copies the YouTube video title into the title link's `title=` HTML attribute to give us the tooltip. --- manifest.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..792bdb2 --- /dev/null +++ b/manifest.json @@ -0,0 +1,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/*" + ] +} -- cgit v1.2.3