Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
Qu'est-ce que Repo creation date checker for Github ?
Repo creation date checker for Github est une extension Chrome développée par http://github.com/NeekSandhu, et sa fonction principale est "Check creation date and last updated date of repo's on Github.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Repo creation date checker for Github
Téléchargez les fichiers d'extension Repo creation date checker for Github au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
URL Officiel | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Description | Check creation date and last updated date of repo's on Github. |
Taille du Fichier | 97.66 KB |
Nombre d'Installations | 250 |
Version Actuelle | 1.1.0 |
Dernière Mise à Jour | 2018-01-12 |
Date de Publication | 2018-01-12 |
Évaluation | 2.67/5 Total 3 Évaluations |
Développeur | http://github.com/NeekSandhu |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |