IMDB Ratings Viewer

This extension will display the ratings of the selected text

Apa itu IMDB Ratings Viewer?

IMDB Ratings Viewer adalah ekstensi Chrome yang dikembangkan oleh ahmar.siddiqui, dan fitur utamanya adalah "This extension will display the ratings of the selected text".

Screenshot Ekstensi

Unduh Berkas CRX Ekstensi IMDB Ratings Viewer

Unduh file ekstensi IMDB Ratings Viewer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Get IMDB Rating of a selected movie

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

Informasi Dasar Ekstensi

Nama IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
URL Resmi https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
Deskripsi This extension will display the ratings of the selected text
Ukuran File 26.64 KB
Jumlah Instalasi 55
Versi Saat Ini 1.2
Terakhir Diperbarui 2016-08-06
Tanggal Publikasi 2016-08-06
Penilaian 2.60/5 Total 5 Penilaian
Pengembang ahmar.siddiqui
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
        }
    ]
}