Chromium CodeSearch Theme
Displays chromium code search in a customized theme
What is Chromium CodeSearch Theme?
Chromium CodeSearch Theme is a Chrome extension developed by Kristijan Burnik, and its main feature is "Displays chromium code search in a customized theme".
Extension Screenshots
Download Chromium CodeSearch Theme Extension CRX File
Download Chromium CodeSearch Theme 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
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.
Extension Basic Information
Name | Chromium CodeSearch Theme |
ID | mfknemlbeilclnbkfelgpldgnbnekeol |
Official URL | https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol |
Description | Displays chromium code search in a customized theme |
File Size | 54.07 KB |
Installation Count | 43 |
Current Version | 0.1.8 |
Last Updated | 2014-10-12 |
Publish Date | 2014-10-11 |
Rating | 4.00/5 Total 1 Ratings |
Developer | Kristijan Burnik |
Payment Type | free |
Extension Website | https://github.com/kristijanburnik/codesearch-theme |
Help Page URL | https://github.com/kristijanburnik/codesearch-theme |
Supported Languages | 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*" ] } |