GitHub Wiki Search
Simple search box for GitHub wikis.
什么是GitHub Wiki Search?
GitHub Wiki Search是由https://tannerhodges.com开发的Chrome扩展程序,该扩展的主要功能是“Simple search box for GitHub wikis.”。
扩展截图
下载GitHub Wiki Search扩展crx文件
下载GitHub Wiki Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
## ⭐️ Features
- Adds a simple search form to the top of GitHub wikis.
- Links to that repo's search page (e.g., `/search?type=Wikis`).
For more details on how to search GitHub wikis, check out the docs: https://docs.github.com/en/free-pro-team@latest/github/searching-for-information-on-github/searching-wikis.
## 👀 Alternatives
- https://chrome.google.com/webstore/detail/wiki-search-for-github/gdifdhnjmjaidbajhapmbcbnoocoeooc 扩展基本信息
| 名称 | |
| ID | neadealkfeligebmmolcibhbcdfplhhg |
| 官方URL | https://chromewebstore.google.com/detail/github-wiki-search/neadealkfeligebmmolcibhbcdfplhhg |
| 简介 | Simple search box for GitHub wikis. |
| 文件大小 | 6.94 KB |
| 安装次数 | 660 |
| 当前版本 | 1.0.2 |
| 更新时间 | 2021-11-07 |
| 上架时间 | 2020-09-28 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://tannerhodges.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/tannerhodges/github-wiki-search |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "GitHub Wiki Search",
"version": "1.0.2",
"description": "Simple search box for GitHub wikis.",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"content.js"
]
}
]
} | |