IMDB Ratings Viewer

This extension will display the ratings of the selected text

Was ist IMDB Ratings Viewer?

IMDB Ratings Viewer ist eine Chrome-Erweiterung, die von ahmar.siddiqui entwickelt wurde, und ihr Hauptmerkmal ist "This extension will display the ratings of the selected text".

Erweiterungsscreenshots

IMDB Ratings Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie IMDB Ratings Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Get IMDB Rating of a selected movie

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

Grundlegende Informationen zur Erweiterung

Name IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Offizielle URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Beschreibung This extension will display the ratings of the selected text
Dateigröße 26.64 KB
Installationsanzahl 55
Aktuelle Version 1.2
Letztes Update 2016-08-06
Veröffentlichungsdatum 2016-08-06
Bewertung 2.60/5 Insgesamt 5 Bewertungen
Entwickler ahmar.siddiqui
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}