Chromium CodeSearch Theme
Displays chromium code search in a customized theme
O que é Chromium CodeSearch Theme?
Chromium CodeSearch Theme é uma extensão do Chrome desenvolvida por Kristijan Burnik, e sua principal característica é "Displays chromium code search in a customized theme".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Chromium CodeSearch Theme
Baixe arquivos de extensão Chromium CodeSearch Theme no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Chromium CodeSearch Theme |
ID | mfknemlbeilclnbkfelgpldgnbnekeol |
URL Oficial | https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol |
Descrição | Displays chromium code search in a customized theme |
Tamanho do Arquivo | 54.07 KB |
Contagem de Instalações | 43 |
Versão Atual | 0.1.8 |
Última Atualização | 2014-10-12 |
Data de Publicação | 2014-10-11 |
Classificação | 4.00/5 Total de 1 Avaliações |
Desenvolvedor | Kristijan Burnik |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kristijanburnik/codesearch-theme |
URL da Página de Ajuda | https://github.com/kristijanburnik/codesearch-theme |
Idiomas Suportados | 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*" ] } |