Black and White
Makes all background colors white and all text black
什麼是Black and White?
Black and White是由ehkusdev開發的Chrome擴展程式,該擴展的主要功能是“Makes all background colors white and all text black”。
擴展截圖
下載Black and White擴展crx文件
下載Black and White擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Black and White |
ID | blmpjmeacjnbcbepgdinbjdgklokpecf |
官方網址 | https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf |
簡介 | Makes all background colors white and all text black |
檔案大小 | 6.74 KB |
安裝次數 | 327 |
目前版本 | 0.1 |
更新時間 | 2017-12-09 |
上架時間 | 2017-12-09 |
評分 | 5.00/5 共 2 次評分 |
開發者 | ehkusdev |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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" ] } |