Chromium CodeSearch Theme
Displays chromium code search in a customized theme
Cos'è Chromium CodeSearch Theme?
Chromium CodeSearch Theme è un'estensione di Chrome sviluppata da https://chaopeng.me, e la sua funzione principale è "Displays chromium code search in a customized theme".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chromium CodeSearch Theme
Scarica i file di estensione Chromium CodeSearch Theme 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
Fork of https://chrome.google.com/webstore/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol Github: https://github.com/chaopeng/codesearch-theme
Informazioni di Base sull'Estensione
Nome | |
ID | bncjaoffkbldggnfkakmnbgfpnikielm |
URL Ufficiale | https://chromewebstore.google.com/detail/chromium-codesearch-theme/bncjaoffkbldggnfkakmnbgfpnikielm |
Descrizione | Displays chromium code search in a customized theme |
Dimensione del File | 51.27 KB |
Conteggio Installazioni | 89 |
Versione Corrente | 0.2.9 |
Ultimo Aggiornamento | 2017-07-07 |
Data di Pubblicazione | 2017-07-06 |
Sviluppatore | https://chaopeng.me |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/chaopeng/codesearch-theme |
URL della Pagina di Aiuto | https://github.com/chaopeng/codesearch-theme/issues |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "https:\/\/cs.chromium.org\/*" ], "js": [ "js\/jquery-1.11.1.min.js", "js\/generated.js", "js\/chromiumcs_content_script.js" ], "css": [ "css\/generated.css" ], "run_at": "document_start" } ], "description": "Displays chromium code search in a customized theme", "short_name": "codesearch-theme", "icons": { "128": "themes-icon.png" }, "background": { "scripts": [ "js\/background.js" ] }, "name": "Chromium CodeSearch Theme", "page_action": { "default_name": "Select style", "default_icon": "themes-icon.png", "default_popup": "popup.html" }, "version": "0.2.9", "manifest_version": 2, "permissions": [ "tabs", "storage", "https:\/\/cs.chromium.org\/*" ] } |