Release Notifier for Github

Unofficial "polyfill" for watching Github releases.

What is Release Notifier for Github?

Release Notifier for Github is a Chrome extension developed by CRIMX, and its main feature is "Unofficial "polyfill" for watching Github releases.".

Extension Screenshots

screenshot
screenshot

Download Release Notifier for Github Extension CRX File

Download Release Notifier for Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Release Notifier for Github Release Notifier for Github
ID gjhmlndokehcbkaockjlgeofgkiaiflg
Official URL https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg
Description Unofficial "polyfill" for watching Github releases.
File Size 175 KB
Installation Count 42
Current Version 0.2.6
Last Updated 2020-02-06
Publish Date 2020-02-06
Rating 5.00/5 Total 5 Ratings
Developer CRIMX
Email [email protected]
Payment Type free
Extension Website https://github.com/crimx/ext-github-release-notifier
Help Page URL https://github.com/crimx/ext-github-release-notifier/issues
Privacy Policy Page URL https://www.crimx.com/privacy-policy
Supported Languages 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
    }
}