Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
What is Follow GitHub Organization?
Follow GitHub Organization is a Chrome extension developed by https://followgithub.org, and its main feature is "Follow GitHub organizations and get activities on new repositories in your feed".
Extension Screenshots
Download Follow GitHub Organization Extension CRX File
Download Follow GitHub Organization extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Follow GitHub Organization |
ID | nihhgppianmnaaomafdoemomnnpdnfjn |
Official URL | https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn |
Description | Follow GitHub organizations and get activities on new repositories in your feed |
File Size | 99.17 KB |
Installation Count | 55 |
Current Version | 0.0.12 |
Last Updated | 2019-08-28 |
Publish Date | 2019-08-28 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://followgithub.org |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } ] } |