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
官方URL 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"
    ]
}