Chromium CodeSearch Theme
Displays chromium code search in a customized theme
Cos'è Chromium CodeSearch Theme?
Chromium CodeSearch Theme è un'estensione di Chrome sviluppata da Kristijan Burnik, 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
Ideal for Chromium devs! Simple extension to help you rest your eyes while navigating the source tree. Supporting themes: - Monokai - Twilight - Space cadet - Blackboard - Espresso Libre - Pastels on Dark - Zenburnesque - Cobalt [new: Sep 17] Shortcuts: - Next theme: CTRL + SHIFT + L. - Previous theme: CTRL + SHIFT + K. Fork and send pull requests for updates: https://github.com/kristijanburnik/codesearch-theme --- More style coverage is incrementally added. New themes and features coming nightly! Please comment and report missing parts and/or bugs.
Informazioni di Base sull'Estensione
Nome | Chromium CodeSearch Theme |
ID | mfknemlbeilclnbkfelgpldgnbnekeol |
URL Ufficiale | https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol |
Descrizione | Displays chromium code search in a customized theme |
Dimensione del File | 54.07 KB |
Conteggio Installazioni | 43 |
Versione Corrente | 0.1.8 |
Ultimo Aggiornamento | 2014-10-12 |
Data di Pubblicazione | 2014-10-11 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Kristijan Burnik |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kristijanburnik/codesearch-theme |
URL della Pagina di Aiuto | https://github.com/kristijanburnik/codesearch-theme |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "matches": [ "https:\/\/code.google.com\/p\/chromium\/codesearch*" ], "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.1.8", "manifest_version": 2, "permissions": [ "tabs", "storage", "https:\/\/code.google.com\/p\/chromium\/codesearch*" ] } |