MyMeta - Customized Metacritic averages.

Custom Metacritic averages from your favorite publications.

Что такое MyMeta - Customized Metacritic averages.?

MyMeta - Customized Metacritic averages. - это расширение Chrome, разработанное Julian De Ocampo, и его основная функция - "Custom Metacritic averages from your favorite publications.".

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

screenshot

Скачать файл CRX расширения MyMeta - Customized Metacritic averages.

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

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

                        MyMeta
=========

Chrome extension that allows users to see normalized review scores on Metacritic based on a custom list of their favorite publications' reviews.

Instructions
=========

Make a list of your favorite Metacritic publications by clicking the MyMeta icon on the toolbar and clicking the "+" button at the bottom. Make sure that the publications are written exactly as they appear on Metacritic.  Click "Remove" to remove one from your list. Your custom Metacritic score will appear next to the normal Metascore when you view the page of any reviewed item on the site.

Note that your publications list is stored on your Google Chrome account and can be accessed only when you are logged into your Google account in Chrome.

View on Github at: https://github.com/JCDJulian/MyMeta                    

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

Название MyMeta - Customized Metacritic averages. MyMeta - Customized Metacritic averages.
ID ljfogjokjmjlaaemkgbnhiodpebjcngc
Официальный URL https://chromewebstore.google.com/detail/mymeta-customized-metacri/ljfogjokjmjlaaemkgbnhiodpebjcngc
Описание Custom Metacritic averages from your favorite publications.
Размер файла 132 KB
Количество установок 32
Текущая Версия 1.0
Последнее Обновление 2014-12-21
Дата публикации 2014-12-21
Рейтинг 4.00/5 Всего 1 оценок
Разработчик Julian De Ocampo
Тип оплаты free
URL страницы помощи https://github.com/JCDJulian/MyMeta
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MyMeta - Customized Metacritic averages.",
    "description": "Custom Metacritic averages from your favorite publications.",
    "version": "1.0",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/byroredux-metacritic.p.mashape.com\/"
    ],
    "browser_action": {
        "default_icon": "16x16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "arbiter.js"
            ],
            "matches": [
                "http:\/\/www.metacritic.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    }
}