IMDB Ratings Viewer

This extension will display the ratings of the selected text

Vad är IMDB Ratings Viewer?

IMDB Ratings Viewer är en Chrome-tillägg utvecklad av ahmar.siddiqui, och dess huvudfunktion är "This extension will display the ratings of the selected text".

Tilläggsskärmbilder

Ladda ner IMDB Ratings Viewer-förlängningens CRX-fil

Ladda ner IMDB Ratings Viewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Get IMDB Rating of a selected movie

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

Grundläggande Information om Tillägg

Namn IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Officiell webbadress https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Beskrivning This extension will display the ratings of the selected text
Filstorlek 26.64 KB
Antal Installationer 55
Aktuell Version 1.2
Senast Uppdaterad 2016-08-06
Publiceringsdatum 2016-08-06
Betyg 2.60/5 Totalt 5 Betyg
Utvecklare ahmar.siddiqui
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
        }
    ]
}