What's New on GitHub

See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.

What's New on GitHub란 무엇입니까?

What's New on GitHub은(는) Mickaël Allonneau에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

What's New on GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension helps you see easily what happened on GitHub since your last visit.
See the screenshot to see it in action!

⭐ Don't forget to leave a rating if you find this extension useful!

(Also available on Firefox : https://addons.mozilla.org/en-US/firefox/addon/whats-new-github/)                    

확장 프로그램 기본 정보

이름 What's New on GitHub What's New on GitHub
ID ldleapnlgbkpkabhbkkeangmnfpikahe
공식 URL https://chromewebstore.google.com/detail/whats-new-on-github/ldleapnlgbkpkabhbkkeangmnfpikahe
설명 See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.
파일 크기 9.8 KB
설치 횟수 175
현재 버전 3.0.1
최근 업데이트 2023-02-28
출시 날짜 2020-05-18
개발자 Mickaël Allonneau
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/flawyte/whats-new-github
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "What's New on GitHub",
    "version": "3.0.1",
    "description": "See what's new and what's not in your GitHub dashboard's feeds and in your organizations' feeds.",
    "icons": {
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/",
                "https:\/\/github.com\/dashboard",
                "https:\/\/github.com\/orgs\/*\/dashboard"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}