Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
Qu'est-ce que Follow GitHub Organization ?
Follow GitHub Organization est une extension Chrome développée par https://followgithub.org, et sa fonction principale est "Follow GitHub organizations and get activities on new repositories in your feed".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Follow GitHub Organization
Téléchargez les fichiers d'extension Follow GitHub Organization au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Follow GitHub Organization |
ID | nihhgppianmnaaomafdoemomnnpdnfjn |
URL Officiel | https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn |
Description | Follow GitHub organizations and get activities on new repositories in your feed |
Taille du Fichier | 99.17 KB |
Nombre d'Installations | 55 |
Version Actuelle | 0.0.12 |
Dernière Mise à Jour | 2019-08-28 |
Date de Publication | 2019-08-28 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://followgithub.org |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |