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
官方網址 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
    }
}