Github Tracker

Track unfollowers on github.

Github Trackerคืออะไร?

Github Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anirudh Dagar และคุณลักษณะหลักของมันคือ "Track unfollowers on github."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Tracker

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}