E-ink Viewable

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

What is E-ink Viewable?

E-ink Viewable is a Chrome extension developed by iSmartCoding, and its main feature is "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".

Extension Screenshots

screenshot

Download E-ink Viewable Extension CRX File

Download E-ink Viewable extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name E-ink Viewable E-ink Viewable
ID lfeckmgmmnioloncabbkcddnnooofdmg
Official URL https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg
Description Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
File Size 122 KB
Installation Count 346
Current Version 1.0.5
Last Updated 2022-07-14
Publish Date 2022-07-05
Rating 5.00/5 Total 5 Ratings
Developer iSmartCoding
Email [email protected]
Payment Type free
Extension Website https://github.com/ismartcoding/e-ink-viewable
Help Page URL https://github.com/ismartcoding/e-ink-viewable
Supported Languages 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"
    ]
}