IMDB Ratings Viewer

This extension will display the ratings of the selected text

Co to jest IMDB Ratings Viewer?

IMDB Ratings Viewer to rozszerzenie Chrome opracowane przez ahmar.siddiqui, a jego główną funkcją jest „This extension will display the ratings of the selected text”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia IMDB Ratings Viewer

Pobierz pliki rozszerzeń IMDB Ratings Viewer 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

                        Get IMDB Rating of a selected movie

> color coded according to the ratings
> will match keywords with similar words or small typos                    

Podstawowe informacje o rozszerzeniu

Nazwa IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Oficjalny URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Opis This extension will display the ratings of the selected text
Rozmiar pliku 26.64 KB
Liczba instalacji 55
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2016-08-06
Data Publikacji 2016-08-06
Ocena 2.60/5 Łącznie 5 Oceny
Deweloper ahmar.siddiqui
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "IMDB Ratings Viewer",
    "description": "This extension will display the ratings of the selected text",
    "version": "1.2",
    "browser_action": {
        "default_icon": {
            "19": "images\/19.png",
            "38": "images\/38.png"
        }
    },
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "activeTab",
        "background",
        "http:\/\/*\/",
        "https:\/\/*\/",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}