E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Co je E-ink Viewable?
E-ink Viewable je rozšíření Chrome vyvinuté iSmartCoding, a jeho hlavní funkcí je „Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření E-ink Viewable
Stáhněte si soubory rozšíření E-ink Viewable ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Základní Informace o Rozšíření
Název | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
Oficiální URL | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Popis | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Velikost souboru | 122 KB |
Počet instalací | 346 |
Aktuální Verze | 1.0.5 |
Poslední Aktualizace | 2022-07-14 |
Datum Vydání | 2022-07-05 |
Hodnocení | 5.00/5 Celkem 5 Hodnocení |
Vývojář | iSmartCoding |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ismartcoding/e-ink-viewable |
URL Stránky Nápovědy | https://github.com/ismartcoding/e-ink-viewable |
Podporované Jazyky | 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" ] } |