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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
        }
    ]
}