E-ink Viewable

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

什麼是E-ink Viewable?

E-ink Viewable是由iSmartCoding開發的Chrome擴展程式,該擴展的主要功能是“Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.”。

擴展截圖

screenshot

下載E-ink Viewable擴展crx文件

下載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
官方網址 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"
    ]
}