Purify

Read news articles with minimal distraction and scrolling.

Что такое Purify?

Purify - это расширение Chrome, разработанное chaowentan, и его основная функция - "Read news articles with minimal distraction and scrolling.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Whenever you find an interesting news article, try using Purify to convert it into a minimalistic view that

- Only displays the content of the article & hides all the distractions, and

- Utilizes all the available screen space to minimize scrolling.                    

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

Название Purify Purify
ID kjiappjpfpaekdfeioanaphpihpojemc
Официальный URL https://chromewebstore.google.com/detail/purify/kjiappjpfpaekdfeioanaphpihpojemc
Описание Read news articles with minimal distraction and scrolling.
Размер файла 6.78 MB
Количество установок 2,000
Текущая Версия 0.2
Последнее Обновление 2013-01-10
Дата публикации 2013-01-10
Рейтинг 3.91/5 Всего 23 оценок
Разработчик chaowentan
Тип оплаты free
Официальный сайт расширения https://github.com/chaowentan/Purify
URL страницы помощи https://github.com/chaowentan/Purify
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Purify",
    "description": "Read news articles with minimal distraction and scrolling.",
    "version": "0.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery.js",
                "js\/Util.js",
                "js\/ArticleParser.js",
                "js\/ArticleView.js",
                "js\/content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "css\/style.css",
        "img\/*.png"
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_title": "Purify",
        "default_icon": {
            "19": "img\/icon19.png"
        }
    }
}