Github 百宝箱
Github 加速,Github 加速,Github 代码在线看,Github 1s,Octotree, VS Code 打开
什么是Github 百宝箱?
Github 百宝箱是由Derek开发的Chrome扩展程序,该扩展的主要功能是“Github 加速,Github 加速,Github 代码在线看,Github 1s,Octotree, VS Code 打开”。
扩展截图
下载Github 百宝箱扩展crx文件
下载Github 百宝箱扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Github 加速,快速查看 Github 源码,快速使用 VS Code 在线打开 Github 查看源码。 扩展基本信息
| 名称 | |
| ID | pbggmlghklngacbdkdjcebaaglkcokhp |
| 官方URL | https://chromewebstore.google.com/detail/github-%E7%99%BE%E5%AE%9D%E7%AE%B1/pbggmlghklngacbdkdjcebaaglkcokhp |
| 简介 | Github 加速,Github 加速,Github 代码在线看,Github 1s,Octotree, VS Code 打开 |
| 文件大小 | 41.2 KB |
| 安装次数 | 7,000 |
| 当前版本 | 1.0.4 |
| 更新时间 | 2023-07-31 |
| 上架时间 | 2020-08-23 |
| 评分 | 2.88/5 共8次评分 |
| 开发者 | Derek |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/codedrinker/github-booster |
| 支持的语言 | zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github \u767e\u5b9d\u7bb1",
"description": "Github \u52a0\u901f,Github \u52a0\u901f,Github \u4ee3\u7801\u5728\u7ebf\u770b,Github 1s,Octotree, VS Code \u6253\u5f00",
"version": "1.0.4",
"permissions": [
"contextMenus",
"tabs",
"activeTab"
],
"background": {
"scripts": [
"background.js"
]
},
"manifest_version": 2,
"content_scripts": [
{
"js": [
"jquery.min.js",
"github-booster.js"
],
"matches": [
"https:\/\/github.com\/*",
"https:\/\/github.com.cnpmjs.org\/*"
]
}
],
"icons": {
"128": "github-booster.png"
},
"browser_action": {
"default_icon": "github-booster.png",
"default_title": "Github \u767e\u5b9d\u7bb1"
}
} | |