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 |
公式URL | 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 |
Eメール | [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" ] } |