Purify

Read news articles with minimal distraction and scrolling.

Co to jest Purify?

Purify to rozszerzenie Chrome opracowane przez chaowentan, a jego główną funkcją jest „Read news articles with minimal distraction and scrolling.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Purify

Pobierz pliki rozszerzeń Purify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Purify Purify
ID kjiappjpfpaekdfeioanaphpihpojemc
Oficjalny URL https://chromewebstore.google.com/detail/purify/kjiappjpfpaekdfeioanaphpihpojemc
Opis Read news articles with minimal distraction and scrolling.
Rozmiar pliku 6.78 MB
Liczba instalacji 2,000
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2013-01-10
Data Publikacji 2013-01-10
Ocena 3.91/5 Łącznie 23 Oceny
Deweloper chaowentan
Typ Płatności free
Strona Rozszerzenia https://github.com/chaowentan/Purify
Adres URL Strony Pomocy https://github.com/chaowentan/Purify
Obsługiwane Języki 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"
        }
    }
}