Github Tracker

Track unfollowers on github.

Github Trackerとは何ですか?

Github TrackerはAnirudh Dagarによって開発されたChromeの拡張機能で、その主な機能は「Track unfollowers on github.」です。

拡張機能のスクリーンショット

screenshot

Github Tracker拡張機能のCRXファイルをダウンロード

Github Tracker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}