Github Tracker
Track unfollowers on github.
Cos'è Github Tracker?
Github Tracker è un'estensione di Chrome sviluppata da Anirudh Dagar, e la sua funzione principale è "Track unfollowers on github.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Tracker
Scarica i file di estensione Github Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Track the accounts that unfollow you on GitHub and get notified instantly on your news feed.
Informazioni di Base sull'Estensione
Nome | Github Tracker |
ID | laplemhfnkmmijhemgamafcbchgoddgp |
URL Ufficiale | https://chromewebstore.google.com/detail/github-tracker/laplemhfnkmmijhemgamafcbchgoddgp |
Descrizione | Track unfollowers on github. |
Dimensione del File | 946 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-04-18 |
Data di Pubblicazione | 2021-04-11 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Anirudh Dagar |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/AnirudhDagar/gh-tracker |
Lingue Supportate | 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" } } |