IMDB Ratings Viewer

This extension will display the ratings of the selected text

IMDB Ratings Viewerとは何ですか?

IMDB Ratings Viewerはahmar.siddiquiによって開発されたChromeの拡張機能で、その主な機能は「This extension will display the ratings of the selected text」です。

拡張機能のスクリーンショット

IMDB Ratings Viewer拡張機能のCRXファイルをダウンロード

IMDB Ratings Viewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Get IMDB Rating of a selected movie

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

拡張機能の基本情報

名前 IMDB Ratings Viewer IMDB Ratings Viewer
ID mcmmjahiclndbfdkblfnopheledjibfl
公式URL https://chrome.google.com/webstore/detail/imdb-ratings-viewer/mcmmjahiclndbfdkblfnopheledjibfl
説明 This extension will display the ratings of the selected text
ファイルサイズ 26.64 KB
インストール数 55
現在のバージョン 1.2
最終更新日 2016-08-06
公開日 2016-08-06
評価 2.60/5 合計 5 レビュー
開発者 ahmar.siddiqui
Eメール [email protected]
支払い方法 free
対応言語 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"
        }
    ]
}