Search Color Changer
Change your Search page color
What is Search Color Changer?
Search Color Changer is a Chrome extension developed by orikoral, and its main feature is "Change your Search page color".
Extension Screenshots
Download Search Color Changer Extension CRX File
Download Search Color Changer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | iflelgcofheaaebigdfkjnejdiphiolm |
Official URL | https://chrome.google.com/webstore/detail/search-color-changer/iflelgcofheaaebigdfkjnejdiphiolm |
Description | Change your Search page color |
File Size | 104 KB |
Installation Count | 389 |
Current Version | 1.0 |
Last Updated | 2015-08-20 |
Publish Date | 2015-08-20 |
Rating | 3.93/5 Total 15 Ratings |
Developer | orikoral |
Payment Type | free |
Supported Languages | 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" } } |