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 https://chaopeng.me, 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
Fork of https://chrome.google.com/webstore/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol Github: https://github.com/chaopeng/codesearch-theme
Extension Basic Information
Name | |
ID | bncjaoffkbldggnfkakmnbgfpnikielm |
Official URL | https://chromewebstore.google.com/detail/chromium-codesearch-theme/bncjaoffkbldggnfkakmnbgfpnikielm |
Description | Displays chromium code search in a customized theme |
File Size | 51.27 KB |
Installation Count | 89 |
Current Version | 0.2.9 |
Last Updated | 2017-07-07 |
Publish Date | 2017-07-06 |
Developer | https://chaopeng.me |
Payment Type | free |
Extension Website | https://github.com/chaopeng/codesearch-theme |
Help Page URL | https://github.com/chaopeng/codesearch-theme/issues |
Supported Languages | 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\/*" ] } |