Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
Hvad er Follow GitHub Organization?
Follow GitHub Organization er en Chrome-udvidelse udviklet af https://followgithub.org, og dens hovedfunktion er "Follow GitHub organizations and get activities on new repositories in your feed".
Udvidelsesskærmbilleder
Download Follow GitHub Organization-udvidelses-CRX-fil
Download Follow GitHub Organization-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Follow GitHub Organization |
ID | nihhgppianmnaaomafdoemomnnpdnfjn |
Officiel URL | https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn |
Beskrivelse | Follow GitHub organizations and get activities on new repositories in your feed |
Filstørrelse | 99.17 KB |
Antal Installationer | 55 |
Nuværende Version | 0.0.12 |
Senest Opdateret | 2019-08-28 |
Udgivelsesdato | 2019-08-28 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | https://followgithub.org |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } ] } |