Purify

Read news articles with minimal distraction and scrolling.

Wat is Purify?

Purify is een Chrome-extensie ontwikkeld door chaowentan, en de belangrijkste functie is "Read news articles with minimal distraction and scrolling.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Purify

Download Purify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Purify Purify
ID kjiappjpfpaekdfeioanaphpihpojemc
Officiële URL https://chromewebstore.google.com/detail/purify/kjiappjpfpaekdfeioanaphpihpojemc
Beschrijving Read news articles with minimal distraction and scrolling.
Bestandsgrootte 6.78 MB
Aantal Installaties 2,000
Huidige Versie 0.2
Laatst Bijgewerkt 2013-01-10
Publicatiedatum 2013-01-10
Beoordeling 3.91/5 Totaal 23 Beoordelingen
Ontwikkelaar chaowentan
Betalingswijze free
Extensiewebsite https://github.com/chaowentan/Purify
Help Pagina-URL https://github.com/chaowentan/Purify
Ondersteunde Talen 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"
        }
    }
}