E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Was ist E-ink Viewable?
E-ink Viewable ist eine Chrome-Erweiterung, die von iSmartCoding entwickelt wurde, und ihr Hauptmerkmal ist "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Erweiterungsscreenshots
E-ink Viewable-Erweiterungs-CRX-Datei herunterladen
Laden Sie E-ink Viewable-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Grundlegende Informationen zur Erweiterung
Name | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
Offizielle URL | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Beschreibung | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Dateigröße | 122 KB |
Installationsanzahl | 346 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2022-07-14 |
Veröffentlichungsdatum | 2022-07-05 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | iSmartCoding |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ismartcoding/e-ink-viewable |
Hilfeseite URL | https://github.com/ismartcoding/e-ink-viewable |
Unterstützte Sprachen | 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" ] } |