E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Co to jest E-ink Viewable?
E-ink Viewable to rozszerzenie Chrome opracowane przez iSmartCoding, a jego główną funkcją jest „Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia E-ink Viewable
Pobierz pliki rozszerzeń E-ink Viewable w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Podstawowe informacje o rozszerzeniu
Nazwa | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
Oficjalny URL | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Opis | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Rozmiar pliku | 122 KB |
Liczba instalacji | 346 |
Aktualna Wersja | 1.0.5 |
Ostatnia Aktualizacja | 2022-07-14 |
Data Publikacji | 2022-07-05 |
Ocena | 5.00/5 Łącznie 5 Oceny |
Deweloper | iSmartCoding |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ismartcoding/e-ink-viewable |
Adres URL Strony Pomocy | https://github.com/ismartcoding/e-ink-viewable |
Obsługiwane Języki | 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" ] } |