Github - Date of creation
Display a date of creation of a repository hosted on Github
Github - Date of creationคืออะไร?
Github - Date of creation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lvarayut และคุณลักษณะหลักของมันคือ "Display a date of creation of a repository hosted on Github"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github - Date of creation
ดาวน์โหลดไฟล์ส่วนขยาย Github - Date of creation ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
## 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | dgnomofcgpdalifennakmbocjpdiafhg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-date-of-creation/dgnomofcgpdalifennakmbocjpdiafhg |
คำอธิบาย | Display a date of creation of a repository hosted on Github |
ขนาดไฟล์ | 477 KB |
จำนวนการติดตั้ง | 996 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2024-01-07 |
วันที่เผยแพร่ | 2020-06-27 |
คะแนน | 3.93/5 รวมทั้งหมด 15 คะแนน |
ผู้พัฒนา | lvarayut |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/lvarayut/github-date-of-creation |
ภาษาที่รองรับ | 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" } } |