Release Notifier for Github

Unofficial "polyfill" for watching Github releases.

什么是Release Notifier for Github?

Release Notifier for Github是由CRIMX开发的Chrome扩展程序,该扩展的主要功能是“Unofficial "polyfill" for watching Github releases.”。

扩展截图

screenshot
screenshot

下载Release Notifier for Github扩展crx文件

下载Release Notifier for Github扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Release Notifier for Github Release Notifier for Github
ID gjhmlndokehcbkaockjlgeofgkiaiflg
官方URL https://chromewebstore.google.com/detail/release-notifier-for-gith/gjhmlndokehcbkaockjlgeofgkiaiflg
简介 Unofficial "polyfill" for watching Github releases.
文件大小 175 KB
安装次数 42
当前版本 0.2.6
更新时间 2020-02-06
上架时间 2020-02-06
评分 5.00/5 共5次评分
开发者 CRIMX
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/crimx/ext-github-release-notifier
帮助页面URL https://github.com/crimx/ext-github-release-notifier/issues
隐私政策页面URL https://www.crimx.com/privacy-policy
支持的语言 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
    }
}