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.
擴展基本資訊
名稱 | Follow GitHub Organization |
ID | nihhgppianmnaaomafdoemomnnpdnfjn |
官方網址 | 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" } ] } |