Clear Read

Immersive reading mode

Clear Readคืออะไร?

Clear Read เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chris.scott และคุณลักษณะหลักของมันคือ "Immersive reading mode"

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

screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Clear Read ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a button to Chrome to toggle a distraction-free reading mode. When enabled, the plugin attempts to strip out just the core content and displays it in legible text on a plain white background.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Clear Read Clear Read
ID kpipjgdapccmpkgipfikeajoopjbcgam
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/clear-read/kpipjgdapccmpkgipfikeajoopjbcgam
คำอธิบาย Immersive reading mode
ขนาดไฟล์ 6.59 KB
จำนวนการติดตั้ง 26,131
เวอร์ชันปัจจุบัน 0.0.10
อัปเดตครั้งล่าสุด 2016-01-14
วันที่เผยแพร่ 2016-01-14
คะแนน 3.95/5 รวมทั้งหมด 41 คะแนน
ผู้พัฒนา chris.scott
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Clear Read",
    "version": "0.0.10",
    "manifest_version": 2,
    "description": "Immersive reading mode",
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Clear Read"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "init.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "clear-read.css"
            ],
            "js": [
                "clear-read.js"
            ]
        }
    ]
}