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 |
| Eメール | [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"
}
]
} | |