E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Wat is E-ink Viewable?
E-ink Viewable is een Chrome-extensie ontwikkeld door iSmartCoding, en de belangrijkste functie is "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Extensie Screenshots
Download het CRX-bestand van de extensie E-ink Viewable
Download E-ink Viewable-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you. Basisinformatie over de Extensie
| Naam | |
| ID | lfeckmgmmnioloncabbkcddnnooofdmg |
| Officiële URL | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
| Beschrijving | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
| Bestandsgrootte | 122 KB |
| Aantal Installaties | 346 |
| Huidige Versie | 1.0.5 |
| Laatst Bijgewerkt | 2022-07-14 |
| Publicatiedatum | 2022-07-05 |
| Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
| Ontwikkelaar | iSmartCoding |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/ismartcoding/e-ink-viewable |
| Help Pagina-URL | https://github.com/ismartcoding/e-ink-viewable |
| Ondersteunde Talen | 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"
]
} | |