E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Qu'est-ce que E-ink Viewable ?
E-ink Viewable est une extension Chrome développée par iSmartCoding, et sa fonction principale est "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension E-ink Viewable
Téléchargez les fichiers d'extension E-ink Viewable au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Informations de Base sur l'Extension
Nom | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
URL Officiel | 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. |
Taille du Fichier | 122 KB |
Nombre d'Installations | 346 |
Version Actuelle | 1.0.5 |
Dernière Mise à Jour | 2022-07-14 |
Date de Publication | 2022-07-05 |
Évaluation | 5.00/5 Total 5 Évaluations |
Développeur | iSmartCoding |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ismartcoding/e-ink-viewable |
URL de la Page d'Aide | https://github.com/ismartcoding/e-ink-viewable |
Langues Prises en Charge | 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" ] } |