Github BFF: Better Fork Finder
Alerts you when there is a more active fork of the Github repo you are viewing
什么是Github BFF: Better Fork Finder?
Github BFF: Better Fork Finder是由Sridatta Thatipamala开发的Chrome扩展程序,该扩展的主要功能是“Alerts you when there is a more active fork of the Github repo you are viewing”。
扩展截图
下载Github BFF: Better Fork Finder扩展crx文件
下载Github BFF: Better Fork Finder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
| 名称 | |
| ID | mohkigeiagechfjbifdedgiicfhalipo |
| 官方URL | https://chromewebstore.google.com/detail/github-bff-better-fork-fi/mohkigeiagechfjbifdedgiicfhalipo |
| 简介 | Alerts you when there is a more active fork of the Github repo you are viewing |
| 文件大小 | 36.44 KB |
| 安装次数 | 43 |
| 当前版本 | 1.0 |
| 更新时间 | 2012-09-27 |
| 上架时间 | 2012-09-26 |
| 评分 | 4.17/5 共6次评分 |
| 开发者 | Sridatta Thatipamala |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github BFF: Better Fork Finder",
"version": "1.0",
"manifest_version": 2,
"description": "Alerts you when there is a more active fork of the Github repo you are viewing",
"permissions": [
"https:\/\/github.com\/",
"https:\/\/api.github.com\/"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/*"
],
"css": [
"style.css"
],
"js": [
"jquery.min.js",
"myscript.js"
]
}
]
} | |