IMDB Ratings Viewer

This extension will display the ratings of the selected text

IMDB Ratings Viewerคืออะไร?

IMDB Ratings Viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ahmar.siddiqui และคุณลักษณะหลักของมันคือ "This extension will display the ratings of the selected text"

ภาพหน้าจอของส่วนขยาย

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย IMDB Ratings Viewer

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
        }
    ]
}