E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Cos'è E-ink Viewable?
E-ink Viewable è un'estensione di Chrome sviluppata da iSmartCoding, e la sua funzione principale è "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione E-ink Viewable
Scarica i file di estensione E-ink Viewable in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Informazioni di Base sull'Estensione
Nome | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
URL Ufficiale | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Descrizione | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Dimensione del File | 122 KB |
Conteggio Installazioni | 346 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2022-07-14 |
Data di Pubblicazione | 2022-07-05 |
Valutazione | 5.00/5 Totale 5 Valutazioni |
Sviluppatore | iSmartCoding |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ismartcoding/e-ink-viewable |
URL della Pagina di Aiuto | https://github.com/ismartcoding/e-ink-viewable |
Lingue Supportate | 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" ] } |