Release Notifier for Github

Unofficial "polyfill" for watching Github releases.

Was ist Release Notifier for Github?

Release Notifier for Github ist eine Chrome-Erweiterung, die von CRIMX entwickelt wurde, und ihr Hauptmerkmal ist "Unofficial "polyfill" for watching Github releases.".

Erweiterungsscreenshots

screenshot
screenshot

Release Notifier for Github-Erweiterungs-CRX-Datei herunterladen

Laden Sie Release Notifier for Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Release Notifier for Github Release Notifier for Github
ID gjhmlndokehcbkaockjlgeofgkiaiflg
Offizielle URL https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg
Beschreibung Unofficial "polyfill" for watching Github releases.
Dateigröße 175 KB
Installationsanzahl 42
Aktuelle Version 0.2.6
Letztes Update 2020-02-06
Veröffentlichungsdatum 2020-02-06
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler CRIMX
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/crimx/ext-github-release-notifier
Hilfeseite URL https://github.com/crimx/ext-github-release-notifier/issues
URL der Datenschutzrichtlinien-Seite https://www.crimx.com/privacy-policy
Unterstützte Sprachen 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
    }
}