Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
Was ist Repo creation date checker for Github?
Repo creation date checker for Github ist eine Chrome-Erweiterung, die von http://github.com/NeekSandhu entwickelt wurde, und ihr Hauptmerkmal ist "Check creation date and last updated date of repo's on Github.".
Erweiterungsscreenshots
Repo creation date checker for Github-Erweiterungs-CRX-Datei herunterladen
Laden Sie Repo creation date checker for Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
Offizielle URL | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Beschreibung | Check creation date and last updated date of repo's on Github. |
Dateigröße | 97.66 KB |
Installationsanzahl | 250 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2018-01-12 |
Veröffentlichungsdatum | 2018-01-12 |
Bewertung | 2.67/5 Insgesamt 3 Bewertungen |
Entwickler | http://github.com/NeekSandhu |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |