Github - Date of creation
Display a date of creation of a repository hosted on Github
O que é Github - Date of creation?
Github - Date of creation é uma extensão do Chrome desenvolvida por lvarayut, e sua principal característica é "Display a date of creation of a repository hosted on Github".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github - Date of creation
Baixe arquivos de extensão Github - Date of creation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
## 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
Informações Básicas da Extensão
Nome | |
ID | dgnomofcgpdalifennakmbocjpdiafhg |
URL Oficial | https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg |
Descrição | Display a date of creation of a repository hosted on Github |
Tamanho do Arquivo | 477 KB |
Contagem de Instalações | 996 |
Versão Atual | 1.0.5 |
Última Atualização | 2024-01-07 |
Data de Publicação | 2020-06-27 |
Classificação | 3.93/5 Total de 15 Avaliações |
Desenvolvedor | lvarayut |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/lvarayut/github-date-of-creation |
Idiomas Suportados | 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" } } |