Color Picker
Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off.
Color Pickerとは何ですか?
Color PickerはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off.」です。
Color Picker拡張機能のCRXファイルをダウンロード
Color Picker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Change websites' display to protect your eyes! Suitable for people who read online a lot. Features: 1. Change websites' background color to dark grey and font color to dark green. 2. Press the color picker's icon next to the address bar to toggle between normal website display and protect-eye display. 3. Settings will be saved so the same display is kept when you relaunch a browser.
拡張機能の基本情報
名前 | Color Picker |
ID | cebngpmffaallpalgamibfalgdipbicm |
公式URL | https://chromewebstore.google.com/detail/color-picker/cebngpmffaallpalgamibfalgdipbicm |
説明 | Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off. |
ファイルサイズ | 6.02 KB |
インストール数 | 495 |
現在のバージョン | 1.2 |
最終更新日 | 2018-07-22 |
公開日 | 2018-07-22 |
開発者 | Unknown |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Color Picker", "version": "1.2", "description": "Change bgcolor to dark grey and font color to dark green.\nPress the icon next to the address bar to toggle on\/off.", "icons": { "16": "color_picker.png", "48": "color_picker.png", "128": "color_picker.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "storage" ], "web_accessible_resources": [ "styles.css", "color_picker.png", "color_picker_disable.png" ], "browser_action": { "default_icon": "color_picker.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ] } |