Titles On Youtube Links
Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Cos'è Titles On Youtube Links?
Titles On Youtube Links è un'estensione di Chrome sviluppata da jozxyqk, e la sua funzione principale è "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Titles On Youtube Links
Scarica i file di estensione Titles On Youtube Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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 a  positioned above the link with the title.                       Informazioni di Base sull'Estensione
     Nome   
 Titles On Youtube Links      ID   lkkpcpneigfenfmcbpllkkfahcmhhhjl      URL Ufficiale   https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl      Descrizione  Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!     Dimensione del File  38.82 KB     Conteggio Installazioni  168     Versione Corrente  2.0     Ultimo Aggiornamento  2020-04-08     Data di Pubblicazione  2020-04-07     Valutazione   4.33/5 Totale 3 Valutazioni      Sviluppatore  jozxyqk     Tipo di Pagamento  free     Sito Web dell'Estensione  https://github.com/pknowles/titlesonyoutubelinks     URL della Pagina di Aiuto  https://github.com/pknowles/titlesonyoutubelinks/issues     Lingue Supportate  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"
            ]
        }
    ]
}