E-ink Viewable

Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.

E-ink Viewableคืออะไร?

E-ink Viewable เป็นส่วนขยายของ Chrome ที่พัฒนาโดย iSmartCoding และคุณลักษณะหลักของมันคือ "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย E-ink Viewable

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

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

                        It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.                    

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

ชื่อ E-ink Viewable E-ink Viewable
ID lfeckmgmmnioloncabbkcddnnooofdmg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg
คำอธิบาย Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
ขนาดไฟล์ 122 KB
จำนวนการติดตั้ง 346
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2022-07-14
วันที่เผยแพร่ 2022-07-05
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา iSmartCoding
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ismartcoding/e-ink-viewable
URL หน้าช่วยเหลือ https://github.com/ismartcoding/e-ink-viewable
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "E-ink Viewable",
    "description": "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.",
    "version": "1.0.5",
    "manifest_version": 3,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_title": "E-ink Viewable",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle-ink-style": {
            "suggested_key": {
                "default": "Ctrl+Shift+X"
            },
            "description": "Toggle ink style"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "css\/base.css"
            ]
        },
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [],
            "css": [
                "css\/github.com.css"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}