Release Notifier for Github

Unofficial "polyfill" for watching Github releases.

Qu'est-ce que Release Notifier for Github ?

Release Notifier for Github est une extension Chrome développée par CRIMX, et sa fonction principale est "Unofficial "polyfill" for watching Github releases.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Release Notifier for Github

Téléchargez les fichiers d'extension Release 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 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                    

Informations de Base sur l'Extension

Nom Release Notifier for Github Release Notifier for Github
ID gjhmlndokehcbkaockjlgeofgkiaiflg
URL Officiel https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg
Description Unofficial "polyfill" for watching Github releases.
Taille du Fichier 175 KB
Nombre d'Installations 42
Version Actuelle 0.2.6
Dernière Mise à Jour 2020-02-06
Date de Publication 2020-02-06
Évaluation 5.00/5 Total 5 Évaluations
Développeur CRIMX
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/crimx/ext-github-release-notifier
URL de la Page d'Aide https://github.com/crimx/ext-github-release-notifier/issues
URL de la Page de Politique de Confidentialité https://www.crimx.com/privacy-policy
Langues Prises en Charge 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
    }
}