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
官方網址 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"
        }
    }
}