Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
Τι είναι το Follow GitHub Organization;
Το Follow GitHub Organization είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://followgithub.org, και η κύρια λειτουργία του είναι "Follow GitHub organizations and get activities on new repositories in your feed".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Follow GitHub Organization
Λήψη αρχείων επέκτασης 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 |
Επίσημο 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" } ] } |