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