Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Hvad er Titles On Youtube Links?
Titles On Youtube Links er en Chrome-udvidelse udviklet af jozxyqk, og dens hovedfunktion er "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".
Udvidelsesskærmbilleder
Download Titles On Youtube Links-udvidelses-CRX-fil
Download Titles On Youtube Links-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.Grundlæggende oplysninger om udvidelsen
Navn Titles On Youtube Links ID lkkpcpneigfenfmcbpllkkfahcmhhhjl Officiel URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl Beskrivelse Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again! Filstørrelse 38.82 KB Antal Installationer 168 Nuværende Version 2.0 Senest Opdateret 2020-04-08 Udgivelsesdato 2020-04-07 Bedømmelse 4.33/5 Samlet 3 Bedømmelser Udvikler jozxyqk Betalingsmetode free Udvidelseswebsted https://github.com/pknowles/titlesonyoutubelinks Hjælpeside-URL https://github.com/pknowles/titlesonyoutubelinks/issues Understøttede Sprog 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" ] } ] }