Black and White
Makes all background colors white and all text black
Black and White là gì?
Black and White là một tiện ích mở rộng Chrome được phát triển bởi ehkusdev, và tính năng chính của nó là "Makes all background colors white and all text black".
Ả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 Black and White
Tải xuống các tệp mở rộng Black and White 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
Create visual simplicity on the web by making all text on a page black and all background colors white with the click of a button. You can also use the keyboard shortcuts Ctrl-Shift-0 to turn all text to black on white and Ctrl-Shift-1 to reload the page and remove it. This extension is open source under the MIT License; feel free to alter it to suit your own needs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Black and White |
ID | blmpjmeacjnbcbepgdinbjdgklokpecf |
URL Chính Thức | https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf |
Mô tả | Makes all background colors white and all text black |
Kích Thước Tệp | 6.74 KB |
Số Lần Cài Đặt | 327 |
Phiên Bản Hiện Tại | 0.1 |
Cập Nhật Lần Cuối | 2017-12-09 |
Ngày Phát Hành | 2017-12-09 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ehkusdev |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Black and White", "manifest_version": 2, "version": "0.1", "description": "Makes all background colors white and all text black", "background": { "scripts": [ "background.js" ] }, "commands": { "black-and-white": { "suggested_key": { "default": "Ctrl+Shift+0", "mac": "Command+Shift+0" }, "description": "Makes text black and background white" }, "remove-black-and-white": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "Command+Shift+1" }, "description": "Removes black and white effect" } }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "web_accessible_resources": [ "blackandwhite.css" ], "permissions": [ "activeTab" ] } |