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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
## 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" } } |