HBO IMDB Ratings for Chrome

This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.

Co to jest HBO IMDB Ratings for Chrome?

HBO IMDB Ratings for Chrome to rozszerzenie Chrome opracowane przez andersbaero, a jego główną funkcją jest „This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia HBO IMDB Ratings for Chrome

Pobierz pliki rozszerzeń HBO IMDB Ratings for Chrome 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

                        This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.                    

Podstawowe informacje o rozszerzeniu

Nazwa HBO IMDB Ratings for Chrome HBO IMDB Ratings for Chrome
ID gimcheaobpkledablonfmgppbcjbiopd
Oficjalny URL https://chromewebstore.google.com/detail/hbo-imdb-ratings-for-chro/gimcheaobpkledablonfmgppbcjbiopd
Opis This extension will display the IMDB rating of the title your mouse is hovering over, in the bottom right corner.
Rozmiar pliku 578 KB
Liczba instalacji 327
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-09-20
Data Publikacji 2019-09-19
Ocena 2.60/5 Łącznie 5 Oceny
Deweloper andersbaero
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HBO IMDB Ratings for Chrome",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.hbonordic.com\/*"
            ],
            "js": [
                "jquery-3.4.0.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/riktigIcon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}