Patched Tomatoes

Fixes Rotten Tomatoes.

Что такое Patched Tomatoes?

Patched Tomatoes - это расширение Chrome, разработанное http://mknepprath.com, и его основная функция - "Fixes Rotten Tomatoes.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Patched Tomatoes

Скачайте файлы расширений Patched Tomatoes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Patched Tomatoes replaces the Tomatometer score on Rotten Tomatoes with the Critics' Average Rating. It does the same for the Audience Score. The Tomatometer score is calculated in a misleading way, so this extension aims to fix that.                    

Основная информация о расширении

Название Patched Tomatoes Patched Tomatoes
ID daceaaccoiggipikdodkejceenipddop
Официальный URL https://chrome.google.com/webstore/detail/patched-tomatoes/daceaaccoiggipikdodkejceenipddop
Описание Fixes Rotten Tomatoes.
Размер файла 37.65 KB
Количество установок 20
Текущая Версия 0.0.0.2
Последнее Обновление 2016-08-19
Дата публикации 2016-08-19
Рейтинг 2.33/5 Всего 3 оценок
Разработчик http://mknepprath.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Patched Tomatoes",
    "version": "0.0.0.2",
    "description": "Fixes Rotten Tomatoes.",
    "icons": {
        "16": "patched-icon.png",
        "48": "patched-icon.png",
        "128": "patched-icon.png"
    },
    "browser_action": {
        "default_icon": "patched-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.rottentomatoes.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "event.js"
            ]
        }
    ],
    "permissions": [
        ""
    ]
}