Search Color Changer
Change your Search page color
Search Color Changerとは何ですか?
Search Color Changerはorikoralによって開発されたChromeの拡張機能で、その主な機能は「Change your Search page color」です。
拡張機能のスクリーンショット
Search Color Changer拡張機能のCRXファイルをダウンロード
Search Color Changer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Personalize your Search page with the color of your choice! Change the search page background color in a single click. More than 20 beautiful colors. The first extension to allow color customization of Search pages. Install now and help this extension become more popular than AdBlock, AdBlock-Plus, Feedly, YouTube, Facebook and all Google Apps :) Icon by www.designbolts.com
拡張機能の基本情報
名前 | |
ID | iflelgcofheaaebigdfkjnejdiphiolm |
公式URL | https://chrome.google.com/webstore/detail/search-color-changer/iflelgcofheaaebigdfkjnejdiphiolm |
説明 | Change your Search page color |
ファイルサイズ | 104 KB |
インストール数 | 389 |
現在のバージョン | 1.0 |
最終更新日 | 2015-08-20 |
公開日 | 2015-08-20 |
評価 | 3.93/5 合計 15 レビュー |
開発者 | orikoral |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Search Color Changer", "description": "Change your Search page color", "version": "1.0", "manifest_version": 2, "icons": { "128": "icon_128.png" }, "background": { "scripts": [ "bg.js" ] }, "content_security_policy": "script-src https:\/\/*.cdn.mxpnl.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery-2.1.1.js", "jquery.color-2.1.2.js", "cs.js" ], "run_at": "document_idle", "all_frames": false } ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "page_action": { "default_title": "Change your Search page color", "default_icon": "icon_19.png", "default_popup": "popup.html" } } |