Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
什么是Follow GitHub Organization?
Follow GitHub Organization是由https://followgithub.org开发的Chrome扩展程序,该扩展的主要功能是“Follow GitHub organizations and get activities on new repositories in your feed”。
扩展截图
下载Follow GitHub Organization扩展crx文件
下载Follow GitHub Organization扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Browser extension that lets you follow GitHub organizations like normal user accounts.
It shows the activities happening in the followed organization accounts in the main GitHub feed.
---
It's not affiliated with GitHub. 扩展基本信息
| 名称 | |
| ID | nihhgppianmnaaomafdoemomnnpdnfjn |
| 官方URL | https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn |
| 简介 | Follow GitHub organizations and get activities on new repositories in your feed |
| 文件大小 | 99.17 KB |
| 安装次数 | 55 |
| 当前版本 | 0.0.12 |
| 更新时间 | 2019-08-28 |
| 上架时间 | 2019-08-28 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | https://followgithub.org |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Follow GitHub Organization",
"version": "0.0.12",
"description": "Follow GitHub organizations and get activities on new repositories in your feed",
"permissions": [
"https:\/\/api.followgithub.org\/*",
"storage"
],
"icons": {
"16": "images\/icon16.png",
"48": "images\/icon48.png",
"128": "images\/icon128.png"
},
"browser_action": [],
"background": {
"scripts": [
"js\/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"js\/index.js"
],
"run_at": "document_end"
}
]
} | |