Purify

Read news articles with minimal distraction and scrolling.

Vad är Purify?

Purify är en Chrome-tillägg utvecklad av chaowentan, och dess huvudfunktion är "Read news articles with minimal distraction and scrolling.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner Purify-förlängningens CRX-fil

Ladda ner Purify-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Purify Purify
ID kjiappjpfpaekdfeioanaphpihpojemc
Officiell webbadress https://chromewebstore.google.com/detail/purify/kjiappjpfpaekdfeioanaphpihpojemc
Beskrivning Read news articles with minimal distraction and scrolling.
Filstorlek 6.78 MB
Antal Installationer 2,000
Aktuell Version 0.2
Senast Uppdaterad 2013-01-10
Publiceringsdatum 2013-01-10
Betyg 3.91/5 Totalt 23 Betyg
Utvecklare chaowentan
Betalningssätt free
Tilläggswebbplats https://github.com/chaowentan/Purify
Hjälpsida URL https://github.com/chaowentan/Purify
Stödda Språk 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"
        }
    }
}