Chromium CodeSearch Theme
Displays chromium code search in a customized theme
什么是Chromium CodeSearch Theme?
Chromium CodeSearch Theme是由https://chaopeng.me开发的Chrome扩展程序,该扩展的主要功能是“Displays chromium code search in a customized theme”。
扩展截图
下载Chromium CodeSearch Theme扩展crx文件
下载Chromium CodeSearch Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Fork of https://chrome.google.com/webstore/detail/chromium-codesearch-theme/mfknemlbeilclnbkfelgpldgnbnekeol
Github: https://github.com/chaopeng/codesearch-theme 扩展基本信息
| 名称 | |
| ID | bncjaoffkbldggnfkakmnbgfpnikielm |
| 官方URL | https://chromewebstore.google.com/detail/chromium-codesearch-theme/bncjaoffkbldggnfkakmnbgfpnikielm |
| 简介 | Displays chromium code search in a customized theme |
| 文件大小 | 51.27 KB |
| 安装次数 | 89 |
| 当前版本 | 0.2.9 |
| 更新时间 | 2017-07-07 |
| 上架时间 | 2017-07-06 |
| 开发者 | https://chaopeng.me |
| 付费类型 | free |
| 扩展官网 | https://github.com/chaopeng/codesearch-theme |
| 帮助页面URL | https://github.com/chaopeng/codesearch-theme/issues |
| 支持的语言 | 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\/*"
]
} | |