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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}