Notifier for GitHub
Displays your GitHub notifications unread count
Qu'est-ce que Notifier for GitHub ?
Notifier for GitHub est une extension Chrome développée par Sindre Sorhus, et sa fonction principale est "Displays your GitHub notifications unread count".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Notifier for GitHub
Téléchargez les fichiers d'extension Notifier for GitHub 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
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.
Informations de Base sur l'Extension
Nom | Notifier for GitHub |
ID | lmjdlojahmbbcodnpecnjnmlddbkjhnn |
URL Officiel | https://chromewebstore.google.com/detail/notifier-for-github/lmjdlojahmbbcodnpecnjnmlddbkjhnn |
Description | Displays your GitHub notifications unread count |
Taille du Fichier | 68.76 KB |
Nombre d'Installations | 11,891 |
Version Actuelle | 23.7.12 |
Dernière Mise à Jour | 2023-07-12 |
Date de Publication | 2020-06-21 |
Évaluation | 4.63/5 Total 52 Évaluations |
Développeur | Sindre Sorhus |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sindresorhus/notifier-for-github-chrome |
URL de la Page d'Aide | https://github.com/sindresorhus/notifier-for-github-chrome/issues |
URL de la Page de Politique de Confidentialité | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Langues Prises en Charge | 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" ] } |