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*"
]
} | |