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