Purify

Read news articles with minimal distraction and scrolling.

Purifyとは何ですか?

Purifyはchaowentanによって開発されたChromeの拡張機能で、その主な機能は「Read news articles with minimal distraction and scrolling.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Purify拡張機能のCRXファイルをダウンロード

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"
        }
    }
}