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. 拡張機能の基本情報
| 名前 | |
| ID | mfknemlbeilclnbkfelgpldgnbnekeol |
| 公式URL | 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*"
]
} | |