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.
扩展基本信息
名称 | E-ink Viewable |
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" ] } |