Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
¿Qué es Repo creation date checker for Github?
Repo creation date checker for Github es una extensión de Chrome desarrollada por http://github.com/NeekSandhu, y su función principal es "Check creation date and last updated date of repo's on Github.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Repo creation date checker for Github
Descarga archivos de extensión Repo creation date checker for Github en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
URL Oficial | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
Descripción | Check creation date and last updated date of repo's on Github. |
Tamaño del Archivo | 97.66 KB |
Cantidad de Instalaciones | 250 |
Versión Actual | 1.1.0 |
Última Actualización | 2018-01-12 |
Fecha de Publicación | 2018-01-12 |
Calificación | 2.67/5 Total de 3 Calificaciones |
Desarrollador | http://github.com/NeekSandhu |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |