IMDB Ratings Viewer

This extension will display the ratings of the selected text

O que é IMDB Ratings Viewer?

IMDB Ratings Viewer é uma extensão do Chrome desenvolvida por ahmar.siddiqui, e sua principal característica é "This extension will display the ratings of the selected text".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão IMDB Ratings Viewer

Baixe arquivos de extensão IMDB Ratings Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Get IMDB Rating of a selected movie

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

Informações Básicas da Extensão

Nome IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Oficial https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Descrição This extension will display the ratings of the selected text
Tamanho do Arquivo 26.64 KB
Contagem de Instalações 55
Versão Atual 1.2
Última Atualização 2016-08-06
Data de Publicação 2016-08-06
Classificação 2.60/5 Total de 5 Avaliações
Desenvolvedor ahmar.siddiqui
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}