Notifier for GitHub

Displays your GitHub notifications unread count

什麼是Notifier for GitHub?

Notifier for GitHub是由Sindre Sorhus開發的Chrome擴展程式,該擴展的主要功能是“Displays your GitHub notifications unread count”。

擴展截圖

screenshot
screenshot

下載Notifier for GitHub擴展crx文件

下載Notifier for GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        It checks the GitHub Notifications API every minute. Supports GitHub Enterprise and an option to only show unread count for issues you're participating in. Make sure to add a token in the Options page.



## Permissions

Both requested permissions are optional, so you can just decline if you don't want it.

### Tabs permission

The first time you click on the extension icon, it will ask you for access to browser tabs. We need this to know if there is already an opened GitHub notifications page and switch to it if so.

### Notifications permission

If you want to receive desktop notifications, you can enable them on extension options page. You will then be asked for the notifications permission.                    

擴展基本資訊

名稱 Notifier for GitHub Notifier for GitHub
ID lmjdlojahmbbcodnpecnjnmlddbkjhnn
官方網址 https://chromewebstore.google.com/detail/notifier-for-github/lmjdlojahmbbcodnpecnjnmlddbkjhnn
簡介 Displays your GitHub notifications unread count
檔案大小 68.76 KB
安裝次數 11,891
目前版本 23.7.12
更新時間 2023-07-12
上架時間 2020-06-21
評分 4.63/5 共 52 次評分
開發者 Sindre Sorhus
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/sindresorhus/notifier-for-github-chrome
說明頁面URL https://github.com/sindresorhus/notifier-for-github-chrome/issues
隱私政策頁面URL https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifier for GitHub",
    "version": "23.7.12",
    "description": "Displays your GitHub notifications unread count",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/notifier-for-github",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "applications": {
        "gecko": {
            "id": "{8d1582b2-ff2a-42e0-ba40-42f4ebfe921b}",
            "strict_min_version": "67.0"
        }
    },
    "icons": {
        "128": "\/icon.png"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "notifications"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "\/icon-toolbar.png"
    },
    "options_ui": {
        "page": "\/options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "\/icon-notif.png",
        "\/sounds\/bell.ogg"
    ]
}