IMDB Ratings Viewer

This extension will display the ratings of the selected text

Cos'è IMDB Ratings Viewer?

IMDB Ratings Viewer è un'estensione di Chrome sviluppata da ahmar.siddiqui, e la sua funzione principale è "This extension will display the ratings of the selected text".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione IMDB Ratings Viewer

Scarica i file di estensione IMDB Ratings Viewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Get IMDB Rating of a selected movie

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

Informazioni di Base sull'Estensione

Nome IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Ufficiale https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Descrizione This extension will display the ratings of the selected text
Dimensione del File 26.64 KB
Conteggio Installazioni 55
Versione Corrente 1.2
Ultimo Aggiornamento 2016-08-06
Data di Pubblicazione 2016-08-06
Valutazione 2.60/5 Totale 5 Valutazioni
Sviluppatore ahmar.siddiqui
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}