Comfortable RPubs

Extension for comfortable reading the articles of RPubs.

Что такое Comfortable RPubs?

Comfortable RPubs - это расширение Chrome, разработанное hoxo_m, и его основная функция - "Extension for comfortable reading the articles of RPubs.".

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

screenshot
screenshot

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

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

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

                        1. Change CSS for more comfortable reading.
2. Change hyperlink target to "_blank" to open new tab.
3. Search articles
4. RSS feed
5. Solved the problem that mixing HTTPS with HTTP                    

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

Название Comfortable RPubs Comfortable RPubs
ID noighcjkbkmjmpmfopmpmefoiaddgijo
Официальный URL https://chromewebstore.google.com/detail/comfortable-rpubs/noighcjkbkmjmpmfopmpmefoiaddgijo
Описание Extension for comfortable reading the articles of RPubs.
Размер файла 114 KB
Количество установок 252
Текущая Версия 0.0.6
Последнее Обновление 2014-07-06
Дата публикации 2014-07-05
Рейтинг 5.00/5 Всего 2 оценок
Разработчик hoxo_m
Тип оплаты free
Поддерживаемые языки en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comfortable RPubs",
    "description": "__MSG_extDescription__",
    "version": "0.0.6",
    "page_action": {
        "default_icon": ".\/icon_016.png",
        "default_title": "__MSG_popupTitle__",
        "default_popup": ".\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/rpubs.com\/*",
                "http:\/\/rstudio-pubs-static.s3.amazonaws.com\/*",
                "https:\/\/rpubs.com\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.js",
                "myscript.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "icons": {
        "16": ".\/icon_016.png",
        "48": ".\/icon_048.png",
        "128": ".\/icon_128.png"
    },
    "background": {
        "page": ".\/background.html"
    },
    "default_locale": "en"
}