E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
O que é E-ink Viewable?
E-ink Viewable é uma extensão do Chrome desenvolvida por iSmartCoding, e sua principal característica é "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão E-ink Viewable
Baixe arquivos de extensão E-ink Viewable no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Informações Básicas da Extensão
Nome | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
URL Oficial | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Descrição | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Tamanho do Arquivo | 122 KB |
Contagem de Instalações | 346 |
Versão Atual | 1.0.5 |
Última Atualização | 2022-07-14 |
Data de Publicação | 2022-07-05 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | iSmartCoding |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ismartcoding/e-ink-viewable |
URL da Página de Ajuda | https://github.com/ismartcoding/e-ink-viewable |
Idiomas Suportados | 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" ] } |