ZoomR

Zoom in on articles.

Что такое ZoomR?

ZoomR - это расширение Chrome, разработанное David Altmayer, и его основная функция - "Zoom in on articles.".

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

screenshot
screenshot
screenshot

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

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

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

                        ZoomR enables you to zoom in on columns on websites. Simply right-click on the column (for example, on a news article) and click "Zoom Here". To zoom out, you can right-click again and click "Unzoom".

Technical: Essentially, this just calculates the zoom required to make the HTML element that was right-clicked be the full width of the screen (-10% so nothing gets cut off).

This requires Chrome version 39 (current dev channel).                    

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

Название ZoomR ZoomR
ID jgmpfcpmgehgmeodlemlnnbpcdokboca
Официальный URL https://chrome.google.com/webstore/detail/zoomr/jgmpfcpmgehgmeodlemlnnbpcdokboca
Описание Zoom in on articles.
Размер файла 4.1 KB
Количество установок 82
Текущая Версия 0.1.5
Последнее Обновление 2014-09-19
Дата публикации 2014-09-19
Рейтинг 1.00/5 Всего 1 оценок
Разработчик David Altmayer
Тип оплаты free
Официальный сайт расширения https://github.com/dhaltmayer/ZoomR
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ZoomR",
    "version": "0.1.5",
    "author": "David H. Altmayer",
    "minimum_chrome_version": "39",
    "description": "Zoom in on articles.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ]
}