GitHub Extended
Discover more repositories
什么是GitHub Extended?
GitHub Extended是由onmyway133开发的Chrome扩展程序,该扩展的主要功能是“Discover more repositories”。
扩展截图
下载GitHub Extended扩展crx文件
下载GitHub Extended扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A Chrome extension to discover more repositories 扩展基本信息
| 名称 | |
| ID | doidfnmbfadacpcjkekkgofkmnkljnhi |
| 官方URL | https://chrome.google.com/webstore/detail/github-extended/doidfnmbfadacpcjkekkgofkmnkljnhi |
| 简介 | Discover more repositories |
| 文件大小 | 2.47 MB |
| 安装次数 | 323 |
| 当前版本 | 1.5.0 |
| 更新时间 | 2016-09-15 |
| 上架时间 | 2016-09-15 |
| 评分 | 4.33/5 共3次评分 |
| 开发者 | onmyway133 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://www.fantageek.com |
| 帮助页面URL | http://www.fantageek.com |
| 隐私政策页面URL | http://www.fantageek.com |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"version": "1.5.0",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"scripts\/content.js",
"scripts\/emoji.js",
"scripts\/colors.js",
"bower_components\/fetch\/fetch.js",
"bower_components\/jquery\/dist\/jquery.min.js",
"bower_components\/jquery-ui\/jquery-ui.min.js"
],
"css": [
"bower_components\/jquery-ui\/themes\/smoothness\/jquery-ui.min.css"
]
}
],
"permissions": [
"https:\/\/github.com\/*"
]
} | |