Github Tracker
Track unfollowers on github.
What is Github Tracker?
Github Tracker is a Chrome extension developed by Anirudh Dagar, and its main feature is "Track unfollowers on github.".
Extension Screenshots
Download Github Tracker Extension CRX File
Download Github Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Track the accounts that unfollow you on GitHub and get notified instantly on your news feed.
Extension Basic Information
Name | Github Tracker |
ID | laplemhfnkmmijhemgamafcbchgoddgp |
Official URL | https://chromewebstore.google.com/detail/github-tracker/laplemhfnkmmijhemgamafcbchgoddgp |
Description | Track unfollowers on github. |
File Size | 946 KB |
Installation Count | 28 |
Current Version | 1.0.1 |
Last Updated | 2021-04-18 |
Publish Date | 2021-04-11 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Anirudh Dagar |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AnirudhDagar/gh-tracker |
Supported Languages | 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" } } |