Purify

Read news articles with minimal distraction and scrolling.

Purifyคืออะไร?

Purify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chaowentan และคุณลักษณะหลักของมันคือ "Read news articles with minimal distraction and scrolling."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Purify

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}