Focused Reader Extension

Creates a focused mode to remove distractions while reading online.

Focused Reader Extensionคืออะไร?

Focused Reader Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย leocreatini.dev และคุณลักษณะหลักของมันคือ "Creates a focused mode to remove distractions while reading online."

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

screenshot

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

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

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

                        This project aims to provide an easy way to remove distractions and information overloading when reading online content. Great for focusing on solely what you're reading.

Cheers,
Leo

Github: https://github.com/leocreatini/focused-reader-extension                    

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

ชื่อ Focused Reader Extension Focused Reader Extension
ID caahnegbjfcllcodihpdjahggfbeleie
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/focused-reader-extension/caahnegbjfcllcodihpdjahggfbeleie
คำอธิบาย Creates a focused mode to remove distractions while reading online.
ขนาดไฟล์ 260 KB
จำนวนการติดตั้ง 134
เวอร์ชันปัจจุบัน 0.1.0
อัปเดตครั้งล่าสุด 2019-09-11
วันที่เผยแพร่ 2019-09-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา leocreatini.dev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focused Reader Extension",
    "short_name": "focused-reader-extension",
    "version": "0.1.0",
    "description": "Creates a focused mode to remove distractions while reading online.",
    "icons": {
        "128": "off.png"
    },
    "browser_action": {
        "default_title": "Toggle Focused Reader Mode"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'",
    "offline_enabled": true,
    "permissions": [
        "",
        "tabs",
        "storage"
    ]
}