IMDB Ratings Viewer

This extension will display the ratings of the selected text

Co je IMDB Ratings Viewer?

IMDB Ratings Viewer je rozšíření Chrome vyvinuté ahmar.siddiqui, a jeho hlavní funkcí je „This extension will display the ratings of the selected text“.

Snímky obrazovky rozšíření

Stáhnout soubor CRX rozšíření IMDB Ratings Viewer

Stáhněte si soubory rozšíření IMDB Ratings Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Get IMDB Rating of a selected movie

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

Základní Informace o Rozšíření

Název IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Oficiální URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Popis This extension will display the ratings of the selected text
Velikost souboru 26.64 KB
Počet instalací 55
Aktuální Verze 1.2
Poslední Aktualizace 2016-08-06
Datum Vydání 2016-08-06
Hodnocení 2.60/5 Celkem 5 Hodnocení
Vývojář ahmar.siddiqui
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}