Follow GitHub Organization
Follow GitHub organizations and get activities on new repositories in your feed
¿Qué es Follow GitHub Organization?
Follow GitHub Organization es una extensión de Chrome desarrollada por https://followgithub.org, y su función principal es "Follow GitHub organizations and get activities on new repositories in your feed".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Follow GitHub Organization
Descarga archivos de extensión Follow GitHub Organization en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Follow GitHub Organization |
ID | nihhgppianmnaaomafdoemomnnpdnfjn |
URL Oficial | https://chromewebstore.google.com/detail/follow-github-organizatio/nihhgppianmnaaomafdoemomnnpdnfjn |
Descripción | Follow GitHub organizations and get activities on new repositories in your feed |
Tamaño del Archivo | 99.17 KB |
Cantidad de Instalaciones | 55 |
Versión Actual | 0.0.12 |
Última Actualización | 2019-08-28 |
Fecha de Publicación | 2019-08-28 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://followgithub.org |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |