Github - Date of creation
Display a date of creation of a repository hosted on Github
Was ist Github - Date of creation?
Github - Date of creation ist eine Chrome-Erweiterung, die von lvarayut entwickelt wurde, und ihr Hauptmerkmal ist "Display a date of creation of a repository hosted on Github".
Erweiterungsscreenshots
Github - Date of creation-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github - Date of creation-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
## 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
Grundlegende Informationen zur Erweiterung
Name | |
ID | dgnomofcgpdalifennakmbocjpdiafhg |
Offizielle URL | https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg |
Beschreibung | Display a date of creation of a repository hosted on Github |
Dateigröße | 477 KB |
Installationsanzahl | 996 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2024-01-07 |
Veröffentlichungsdatum | 2020-06-27 |
Bewertung | 3.93/5 Insgesamt 15 Bewertungen |
Entwickler | lvarayut |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lvarayut/github-date-of-creation |
Unterstützte Sprachen | 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" } } |