E-ink Viewable
Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.
E-ink Viewable là gì?
E-ink Viewable là một tiện ích mở rộng Chrome được phát triển bởi iSmartCoding, và tính năng chính của nó là "Make all websites viewable in e-ink screen, convert dark theme to light theme automatically.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng E-ink Viewable
Tải xuống các tệp mở rộng E-ink Viewable dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
It is open source. If it helps you, please give a star on github https://github.com/ismartcoding/e-ink-viewable. Thank you.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | E-ink Viewable |
ID | lfeckmgmmnioloncabbkcddnnooofdmg |
URL Chính Thức | https://chromewebstore.google.com/detail/e-ink-viewable/lfeckmgmmnioloncabbkcddnnooofdmg |
Mô tả | Make all websites viewable in e-ink screen, convert dark theme to light theme automatically. |
Kích Thước Tệp | 122 KB |
Số Lần Cài Đặt | 346 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2022-07-14 |
Ngày Phát Hành | 2022-07-05 |
Đánh Giá | 5.00/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | iSmartCoding |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ismartcoding/e-ink-viewable |
URL Trang Trợ Giúp | https://github.com/ismartcoding/e-ink-viewable |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |