IMDB Ratings Viewer

This extension will display the ratings of the selected text

Wat is IMDB Ratings Viewer?

IMDB Ratings Viewer is een Chrome-extensie ontwikkeld door ahmar.siddiqui, en de belangrijkste functie is "This extension will display the ratings of the selected text".

Extensie Screenshots

Download het CRX-bestand van de extensie IMDB Ratings Viewer

Download IMDB Ratings Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Get IMDB Rating of a selected movie

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

Basisinformatie over de Extensie

Naam IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
Officiële URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Beschrijving This extension will display the ratings of the selected text
Bestandsgrootte 26.64 KB
Aantal Installaties 55
Huidige Versie 1.2
Laatst Bijgewerkt 2016-08-06
Publicatiedatum 2016-08-06
Beoordeling 2.60/5 Totaal 5 Beoordelingen
Ontwikkelaar ahmar.siddiqui
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
        }
    ]
}