Github Tracker

Track unfollowers on github.

Github Tracker란 무엇입니까?

Github Tracker은(는) Anirudh Dagar에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track unfollowers on github."입니다.

확장 프로그램 스크린샷

screenshot

Github Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Track the accounts that unfollow you on GitHub and get notified instantly on your news feed.                    

확장 프로그램 기본 정보

이름 Github Tracker Github Tracker
ID laplemhfnkmmijhemgamafcbchgoddgp
공식 URL https://chromewebstore.google.com/detail/github-tracker/laplemhfnkmmijhemgamafcbchgoddgp
설명 Track unfollowers on github.
파일 크기 946 KB
설치 횟수 28
현재 버전 1.0.1
최근 업데이트 2021-04-18
출시 날짜 2021-04-11
평점 5.00/5 총 1 개의 평점
개발자 Anirudh Dagar
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AnirudhDagar/gh-tracker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Tracker",
    "description": "Track unfollowers on github.",
    "version": "1.0.1",
    "manifest_version": 2,
    "author": "Anirudh Dagar & Aaradhya Saxena",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "page": "background.html",
        "js": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Github Tracker"
    },
    "permissions": [
        "storage",
        "webNavigation",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "static\/16p.png",
        "48": "static\/48p.png",
        "128": "static\/128p.png"
    }
}