Retina Everywhere

Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com

Что такое Retina Everywhere?

Retina Everywhere - это расширение Chrome, разработанное https://sites.google.com/site/haroldmartin, и его основная функция - "Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com".

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

screenshot

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

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

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

                        Made for Apple MacBook Pro with Mac OS X.

Supported sites:
Amazon
iTunes Preview (yes, really)
The Verge
AppleInsider
HipChat

Created entirely in CSS for ultra fast loading.

https://github.com/hbmartin/chrome-retina                    

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

Название Retina Everywhere Retina Everywhere
ID hajkboeohfildgccolflcdedgbkpdjlc
Официальный URL https://chromewebstore.google.com/detail/retina-everywhere/hajkboeohfildgccolflcdedgbkpdjlc
Описание Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com
Размер файла 42.01 KB
Количество установок 154
Текущая Версия 1.4.0
Последнее Обновление 2014-09-18
Дата публикации 2014-09-18
Рейтинг 5.00/5 Всего 3 оценок
Разработчик https://sites.google.com/site/haroldmartin
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Retina Everywhere",
    "version": "1.4.0",
    "description": "Upgrade interface images to Retina (HiDPI) on various sites, including Amazon.com",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "font\/fontello.woff"
    ],
    "permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.amazon.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "fontello.css",
                "amazon.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.hipchat.com\/chat"
            ],
            "run_at": "document_end",
            "css": [
                "fontello.css",
                "hipchat.css"
            ]
        },
        {
            "matches": [
                "*:\/\/itunes.apple.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "fontello.css",
                "itunes.css"
            ]
        },
        {
            "matches": [
                "*:\/\/www.theverge.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "verge.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.appleinsider.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "appleinsider.css"
            ]
        }
    ]
}