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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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