Release Notifier for Github
Unofficial "polyfill" for watching Github releases.
¿Qué es Release Notifier for Github?
Release Notifier for Github es una extensión de Chrome desarrollada por CRIMX, y su función principal es "Unofficial "polyfill" for watching Github releases.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Release Notifier for Github
Descarga archivos de extensión Release Notifier for Github 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
It checks Github releases every 15 minutes and notifies releases by browser notification. Fast & light-weight: It is loaded and run only when needed. It uses Github api and takes advantage of 403 cache. You can also switch to atom feeds for unsupported repos. Source https://github.com/crimx/ext-github-release-notifier
Información Básica de la Extensión
Nombre | Release Notifier for Github |
ID | gjhmlndokehcbkaockjlgeofgkiaiflg |
URL Oficial | https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg |
Descripción | Unofficial "polyfill" for watching Github releases. |
Tamaño del Archivo | 175 KB |
Cantidad de Instalaciones | 42 |
Versión Actual | 0.2.6 |
Última Actualización | 2020-02-06 |
Fecha de Publicación | 2020-02-06 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | CRIMX |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/crimx/ext-github-release-notifier |
URL de la Página de Ayuda | https://github.com/crimx/ext-github-release-notifier/issues |
URL de la Página de Política de Privacidad | https://www.crimx.com/privacy-policy |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Release Notifier for Github", "short_name": "Release Notifier", "description": "Unofficial \"polyfill\" for watching Github releases.", "version": "0.2.6", "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png" }, "default_popup": "popup.html", "default_title": "Everything is up to date." }, "permissions": [ "https:\/\/*.github.com\/*", "alarms", "identity", "storage", "notifications" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "minimum_chrome_version": "55", "background": { "scripts": [ "background.js" ], "persistent": false } } |