Notifier for GitHub
Displays your GitHub notifications unread count
¿Qué es Notifier for GitHub?
Notifier for GitHub es una extensión de Chrome desarrollada por Sindre Sorhus, y su función principal es "Displays your GitHub notifications unread count".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Notifier for GitHub
Descarga archivos de extensión 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 the GitHub Notifications API every minute. Supports GitHub Enterprise and an option to only show unread count for issues you're participating in. Make sure to add a token in the Options page. ## Permissions Both requested permissions are optional, so you can just decline if you don't want it. ### Tabs permission The first time you click on the extension icon, it will ask you for access to browser tabs. We need this to know if there is already an opened GitHub notifications page and switch to it if so. ### Notifications permission If you want to receive desktop notifications, you can enable them on extension options page. You will then be asked for the notifications permission.
Información Básica de la Extensión
Nombre | Notifier for GitHub |
ID | lmjdlojahmbbcodnpecnjnmlddbkjhnn |
URL Oficial | https://chromewebstore.google.com/detail/notifier-for-github/lmjdlojahmbbcodnpecnjnmlddbkjhnn |
Descripción | Displays your GitHub notifications unread count |
Tamaño del Archivo | 68.76 KB |
Cantidad de Instalaciones | 11,891 |
Versión Actual | 23.7.12 |
Última Actualización | 2023-07-12 |
Fecha de Publicación | 2020-06-21 |
Calificación | 4.63/5 Total de 52 Calificaciones |
Desarrollador | Sindre Sorhus |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/sindresorhus/notifier-for-github-chrome |
URL de la Página de Ayuda | https://github.com/sindresorhus/notifier-for-github-chrome/issues |
URL de la Página de Política de Privacidad | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notifier for GitHub", "version": "23.7.12", "description": "Displays your GitHub notifications unread count", "homepage_url": "https:\/\/github.com\/sindresorhus\/notifier-for-github", "manifest_version": 2, "minimum_chrome_version": "74", "applications": { "gecko": { "id": "{8d1582b2-ff2a-42e0-ba40-42f4ebfe921b}", "strict_min_version": "67.0" } }, "icons": { "128": "\/icon.png" }, "permissions": [ "alarms", "storage" ], "optional_permissions": [ "tabs", "notifications" ], "background": { "persistent": true, "scripts": [ "\/background.js" ] }, "browser_action": { "default_icon": "\/icon-toolbar.png" }, "options_ui": { "page": "\/options.html", "chrome_style": true }, "web_accessible_resources": [ "\/icon-notif.png", "\/sounds\/bell.ogg" ] } |