Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Co je Titles On Youtube Links?
Titles On Youtube Links je rozšíření Chrome vyvinuté jozxyqk, a jeho hlavní funkcí je „Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Titles On Youtube Links
Stáhněte si soubory rozšíření Titles On Youtube Links ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.Základní Informace o Rozšíření
Název Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl Oficiální URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl Popis Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! Velikost souboru 38.82 KB Počet instalací 168 Aktuální Verze 2.0 Poslední Aktualizace 2020-04-08 Datum Vydání 2020-04-07 Hodnocení 4.33/5 Celkem 3 Hodnocení Vývojář jozxyqk Typ Platby free Webové stránky Rozšíření https://github.com/pknowles/titlesonyoutubelinks URL Stránky Nápovědy https://github.com/pknowles/titlesonyoutubelinks/issues Podporované Jazyky 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" ] } ] }