IMDB Ratings Viewer

This extension will display the ratings of the selected text

Qu'est-ce que IMDB Ratings Viewer ?

IMDB Ratings Viewer est une extension Chrome développée par ahmar.siddiqui, et sa fonction principale est "This extension will display the ratings of the selected text".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension IMDB Ratings Viewer

Téléchargez les fichiers d'extension IMDB Ratings Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Get IMDB Rating of a selected movie

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

Informations de Base sur l'Extension

Nom IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Officiel https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Description This extension will display the ratings of the selected text
Taille du Fichier 26.64 KB
Nombre d'Installations 55
Version Actuelle 1.2
Dernière Mise à Jour 2016-08-06
Date de Publication 2016-08-06
Évaluation 2.60/5 Total 5 Évaluations
Développeur ahmar.siddiqui
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    ]
}