E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Vad är E-ink Viewable?
E-ink Viewable är en Chrome-tillägg utvecklad av iSmartCoding, och dess huvudfunktion är "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Tilläggsskärmbilder
Ladda ner E-ink Viewable-förlängningens CRX-fil
Ladda ner E-ink Viewable-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you. Grundläggande Information om Tillägg
| Namn | |
| ID | lfeckmgmmnioloncabbkcddnnooofdmg |
| Officiell webbadress | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
| Beskrivning | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
| Filstorlek | 122 KB |
| Antal Installationer | 346 |
| Aktuell Version | 1.0.5 |
| Senast Uppdaterad | 2022-07-14 |
| Publiceringsdatum | 2022-07-05 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | iSmartCoding |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/ismartcoding/e-ink-viewable |
| Hjälpsida URL | https://github.com/ismartcoding/e-ink-viewable |
| Stödda Språk | 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"
]
} | |