Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
Cos'è Repo creation date checker for Github?
Repo creation date checker for Github è un'estensione di Chrome sviluppata da http://github.com/NeekSandhu, e la sua funzione principale è "Check creation date and last updated date of repo's on Github.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Repo creation date checker for Github
Scarica i file di estensione Repo creation date checker for Github 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
Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!! Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github
Informazioni di Base sull'Estensione
Nome | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
URL Ufficiale | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Descrizione | Check creation date and last updated date of repo's on Github. |
Dimensione del File | 97.66 KB |
Conteggio Installazioni | 250 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2018-01-12 |
Data di Pubblicazione | 2018-01-12 |
Valutazione | 2.67/5 Totale 3 Valutazioni |
Sviluppatore | http://github.com/NeekSandhu |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repo creation date checker for Github", "version": "1.1.0", "description": "Check creation date and last updated date of repo's on Github.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "author": "http:\/\/github.com\/NeekSandhu", "background": { "scripts": [ "src\/js\/bg.js" ], "persistent": true }, "homepage_url": "http:\/\/github.com\/NeekSandhu", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/js\/injected.js" ], "css": [ "src\/css\/main.css" ], "run_at": "document_start" } ] } |