Titles On Youtube Links

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

Co to jest Titles On Youtube Links?

Titles On Youtube Links to rozszerzenie Chrome opracowane przez jozxyqk, a jego główną funkcją jest „Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Titles On Youtube Links

Pobierz pliki rozszerzeń Titles On Youtube Links w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.

Podstawowe informacje o rozszerzeniu

Nazwa Titles On Youtube Links Titles On Youtube Links
ID lkkpcpneigfenfmcbpllkkfahcmhhhjl
Oficjalny URL https://chromewebstore.google.com/detail/titles-on-youtube-links/lkkpcpneigfenfmcbpllkkfahcmhhhjl
Opis Fetches and displays titles of youtube links on mouse-over. Never get rickrolled again!
Rozmiar pliku 38.82 KB
Liczba instalacji 168
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2020-04-08
Data Publikacji 2020-04-07
Ocena 4.33/5 Łącznie 3 Oceny
Deweloper jozxyqk
Typ Płatności free
Strona Rozszerzenia https://github.com/pknowles/titlesonyoutubelinks
Adres URL Strony Pomocy https://github.com/pknowles/titlesonyoutubelinks/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}