IMDB Ratings Viewer

This extension will display the ratings of the selected text

¿Qué es IMDB Ratings Viewer?

IMDB Ratings Viewer es una extensión de Chrome desarrollada por ahmar.siddiqui, y su función principal es "This extension will display the ratings of the selected text".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión IMDB Ratings Viewer

Descarga archivos de extensión IMDB Ratings Viewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Get IMDB Rating of a selected movie

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

Información Básica de la Extensión

Nombre IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Oficial https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Descripción This extension will display the ratings of the selected text
Tamaño del Archivo 26.64 KB
Cantidad de Instalaciones 55
Versión Actual 1.2
Última Actualización 2016-08-06
Fecha de Publicación 2016-08-06
Calificación 2.60/5 Total de 5 Calificaciones
Desarrollador ahmar.siddiqui
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
        }
    ]
}