Chromium CodeSearch Theme
Displays chromium code search in a customized theme
什麼是Chromium CodeSearch Theme?
Chromium CodeSearch Theme是由Kristijan Burnik開發的Chrome擴展程式,該擴展的主要功能是“Displays chromium code search in a customized theme”。
擴展截圖
下載Chromium CodeSearch Theme擴展crx文件
下載Chromium CodeSearch Theme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Chromium CodeSearch Theme |
ID | mfknemlbeilclnbkfelgpldgnbnekeol |
官方網址 | https://chromewebstore.google.com/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol |
簡介 | Displays chromium code search in a customized theme |
檔案大小 | 54.07 KB |
安裝次數 | 43 |
目前版本 | 0.1.8 |
更新時間 | 2014-10-12 |
上架時間 | 2014-10-11 |
評分 | 4.00/5 共 1 次評分 |
開發者 | Kristijan Burnik |
付費類型 | free |
擴展官網 | https://github.com/kristijanburnik/codesearch-theme |
說明頁面URL | https://github.com/kristijanburnik/codesearch-theme |
支援的語言 | 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*" ] } |