E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
Что такое E-ink Viewable?
E-ink Viewable - это расширение Chrome, разработанное iSmartCoding, и его основная функция - "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Снимки экрана расширения
Скачать файл CRX расширения E-ink Viewable
Скачайте файлы расширений E-ink Viewable в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you. Основная информация о расширении
| Название | |
| ID | lfeckmgmmnioloncabbkcddnnooofdmg |
| Официальный URL | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
| Описание | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
| Размер файла | 122 KB |
| Количество установок | 346 |
| Текущая Версия | 1.0.5 |
| Последнее Обновление | 2022-07-14 |
| Дата публикации | 2022-07-05 |
| Рейтинг | 5.00/5 Всего 5 оценок |
| Разработчик | iSmartCoding |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/ismartcoding/e-ink-viewable |
| URL страницы помощи | https://github.com/ismartcoding/e-ink-viewable |
| Поддерживаемые языки | 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"
]
} | |