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

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

확장 프로그램 사용 설명서

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