E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
E-ink Viewableとは何ですか?
E-ink ViewableはiSmartCodingによって開発されたChromeの拡張機能で、その主な機能は「Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.」です。
拡張機能のスクリーンショット
E-ink Viewable拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
]
} | |