Titles On Youtube Links

Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!

Wat is Titles On Youtube Links?

Titles On Youtube Links is een Chrome-extensie ontwikkeld door jozxyqk, en de belangrijkste functie is "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Titles On Youtube Links

Download Titles On Youtube Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.

Basisinformatie over de Extensie

Naam Titles On Youtube Links Titles On Youtube Links
ID lkkpcpneigfenfmcbpllkkfahcmhhhjl
Officiële URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl
Beschrijving Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Bestandsgrootte 38.82 KB
Aantal Installaties 168
Huidige Versie 2.0
Laatst Bijgewerkt 2020-04-08
Publicatiedatum 2020-04-07
Beoordeling 4.33/5 Totaal 3 Beoordelingen
Ontwikkelaar jozxyqk
Betalingswijze free
Extensiewebsite https://github.com/pknowles/titlesonyoutubelinks
Help Pagina-URL https://github.com/pknowles/titlesonyoutubelinks/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}