Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
What is Titles On Youtube Links?
Titles On Youtube Links is a Chrome extension developed by jozxyqk, and its main feature is "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".
Extension Screenshots
Download Titles On Youtube Links Extension CRX File
Download Titles On Youtube Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Displays a custom "title text" with video titles when you mouse-over youtube links. Designed to be very light-weight and unobtrusive. Specifically, it catches hover events on links, uses the youtube API to fetch the title (if not already cached), and displays it by creating apositioned above the link with the title.Extension Basic Information
Name Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl Official URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl Description Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! File Size 38.82 KB Installation Count 168 Current Version 2.0 Last Updated 2020-04-08 Publish Date 2020-04-07 Rating 4.33/5 Total 3 Ratings Developer jozxyqk Payment Type free Extension Website https://github.com/pknowles/titlesonyoutubelinks Help Page URL https://github.com/pknowles/titlesonyoutubelinks/issues Supported Languages en manifest.json { "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Titles On Youtube Links", "short_name": "Youtube Link Titles", "description": "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!", "version": "2.0", "icons": { "128": "icon128.png" }, "background": { "scripts": [ "jquery-2.2.0.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "" ], "exclude_matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-2.2.0.min.js", "content.js" ] } ] }