Github - Date of creation
Display a date of creation of a repository hosted on Github
¿Qué es Github - Date of creation?
Github - Date of creation es una extensión de Chrome desarrollada por lvarayut, y su función principal es "Display a date of creation of a repository hosted on Github".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Github - Date of creation
Descarga archivos de extensión Github - Date of creation 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
## Highlights - Beautiful calendar icon in the summary bar on a repository page - Customizable date format followed [Moment](https://momentjs.com/docs/#/displaying) format pattern - Best performance by storing all fetched URIs in the Storage
Información Básica de la Extensión
Nombre | |
ID | dgnomofcgpdalifennakmbocjpdiafhg |
URL Oficial | https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg |
Descripción | Display a date of creation of a repository hosted on Github |
Tamaño del Archivo | 477 KB |
Cantidad de Instalaciones | 996 |
Versión Actual | 1.0.5 |
Última Actualización | 2024-01-07 |
Fecha de Publicación | 2020-06-27 |
Calificación | 3.93/5 Total de 15 Calificaciones |
Desarrollador | lvarayut |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/lvarayut/github-date-of-creation |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github - Date of creation", "version": "1.0.5", "manifest_version": 3, "description": "Display a date of creation of a repository hosted on Github", "homepage_url": "https:\/\/github.com\/lvarayut\/github-date-of-creation", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Varayut Lerdkanlayanawat", "action": { "default_icon": "icons\/icon19.png" }, "permissions": [ "storage" ], "host_permissions": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "background": { "service_worker": "src\/bg\/index.js" }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "src\/vendors\/moment.min.js", "src\/constant\/index.js", "src\/inject\/index.js" ] } ], "options_ui": { "page": "src\/option\/index.html" } } |