Movie Ratings

Retrieve movie ratings from Rotten Tomatoes.

O que é Movie Ratings?

Movie Ratings é uma extensão do Chrome desenvolvida por Ronak Patel, e sua principal característica é "Retrieve movie ratings from Rotten Tomatoes.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Movie Ratings

Baixe arquivos de extensão Movie Ratings 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

                        Movie Ratings lets you view the Rotten Tomatoes and IMDb ratings for a movie. All you have to do is highlight the name of a movie, right click, and select "Get Movie Rating" (you can also right click on a link).

After installing the extension the tabs currently opened will need to be reloaded.                    

Informações Básicas da Extensão

Nome Movie Ratings Movie Ratings
ID pfmcppclannbbilgigjlodcjkkohjiom
URL Oficial https://chrome.google.com/webstore/detail/movie-ratings/pfmcppclannbbilgigjlodcjkkohjiom
Descrição Retrieve movie ratings from Rotten Tomatoes.
Tamanho do Arquivo 80.87 KB
Contagem de Instalações 194
Versão Atual 1.6.2
Última Atualização 2015-01-18
Data de Publicação 2015-01-18
Classificação 3.00/5 Total de 13 Avaliações
Desenvolvedor Ronak Patel
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Movie Ratings",
    "version": "1.6.2",
    "description": "Retrieve movie ratings from Rotten Tomatoes.",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "listeners.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "display.html",
        "display.js",
        "config.js",
        "listeners.js",
        "lib\/*.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/rt-fetcher.herokuapp.com; object-src 'self'"
}