Search Color Changer
Change your Search page color
Cos'è Search Color Changer?
Search Color Changer è un'estensione di Chrome sviluppata da orikoral, e la sua funzione principale è "Change your Search page color".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Search Color Changer
Scarica i file di estensione Search Color Changer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | iflelgcofheaaebigdfkjnejdiphiolm |
URL Ufficiale | https://chrome.google.com/webstore/detail/search-color-changer/iflelgcofheaaebigdfkjnejdiphiolm |
Descrizione | Change your Search page color |
Dimensione del File | 104 KB |
Conteggio Installazioni | 389 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2015-08-20 |
Data di Pubblicazione | 2015-08-20 |
Valutazione | 3.93/5 Totale 15 Valutazioni |
Sviluppatore | orikoral |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |