Purify

Read news articles with minimal distraction and scrolling.

Was ist Purify?

Purify ist eine Chrome-Erweiterung, die von chaowentan entwickelt wurde, und ihr Hauptmerkmal ist "Read news articles with minimal distraction and scrolling.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Purify-Erweiterungs-CRX-Datei herunterladen

Laden Sie Purify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Purify Purify
ID kjiappjpfpaekdfeioanaphpihpojemc
Offizielle URL https://chromewebstore.google.com/detail/purify/kjiappjpfpaekdfeioanaphpihpojemc
Beschreibung Read news articles with minimal distraction and scrolling.
Dateigröße 6.78 MB
Installationsanzahl 2,000
Aktuelle Version 0.2
Letztes Update 2013-01-10
Veröffentlichungsdatum 2013-01-10
Bewertung 3.91/5 Insgesamt 23 Bewertungen
Entwickler chaowentan
Zahlungsart free
Erweiterungswebsite https://github.com/chaowentan/Purify
Hilfeseite URL https://github.com/chaowentan/Purify
Unterstützte Sprachen 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"
        }
    }
}