Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
What is Repo creation date checker for Github?
Repo creation date checker for Github is a Chrome extension developed by http://github.com/NeekSandhu, and its main feature is "Check creation date and last updated date of repo's on Github.".
Extension Screenshots
Download Repo creation date checker for Github Extension CRX File
Download Repo creation date checker for Github 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
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
Extension Basic Information
Name | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
Official URL | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Description | Check creation date and last updated date of repo's on Github. |
File Size | 97.66 KB |
Installation Count | 250 |
Current Version | 1.1.0 |
Last Updated | 2018-01-12 |
Publish Date | 2018-01-12 |
Rating | 2.67/5 Total 3 Ratings |
Developer | http://github.com/NeekSandhu |
Payment Type | free |
Supported Languages | 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" } ] } |