Titles On Youtube Links

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

Was ist Titles On Youtube Links?

Titles On Youtube Links ist eine Chrome-Erweiterung, die von jozxyqk entwickelt wurde, und ihr Hauptmerkmal ist "Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!".

Erweiterungsscreenshots

screenshot

Titles On Youtube Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie Titles On Youtube Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.

Grundlegende Informationen zur Erweiterung

Name Titles On Youtube Links Titles On Youtube Links
ID lkkpcpneigfenfmcbpllkkfahcmhhhjl
Offizielle URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl
Beschreibung Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Dateigröße 38.82 KB
Installationsanzahl 168
Aktuelle Version 2.0
Letztes Update 2020-04-08
Veröffentlichungsdatum 2020-04-07
Bewertung 4.33/5 Insgesamt 3 Bewertungen
Entwickler jozxyqk
Zahlungsart free
Erweiterungswebsite https://github.com/pknowles/titlesonyoutubelinks
Hilfeseite URL https://github.com/pknowles/titlesonyoutubelinks/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}