Repo creation date checker for Github
Check creation date and last updated date of repo's on Github.
Repo creation date checker for Githubคืออะไร?
Repo creation date checker for Github เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://github.com/NeekSandhu และคุณลักษณะหลักของมันคือ "Check creation date and last updated date of repo's on Github."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Repo creation date checker for Github
ดาวน์โหลดไฟล์ส่วนขยาย Repo creation date checker for Github ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wondered how long a project has been around? OR you quickly want to know when it was last updated. This simple extension adds two additional labels in the repo details bar, one for when the repo was created and the other for when it was last updated!! Source code/Contribution https://github.com/NeekSandhu/Repo-creation-date-checker-for-Github
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | gmfnjoaiijannkmjppchbknjdghpmleg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/repo-creation-date-checke/gmfnjoaiijannkmjppchbknjdghpmleg |
คำอธิบาย | Check creation date and last updated date of repo's on Github. |
ขนาดไฟล์ | 97.66 KB |
จำนวนการติดตั้ง | 250 |
เวอร์ชันปัจจุบัน | 1.1.0 |
อัปเดตครั้งล่าสุด | 2018-01-12 |
วันที่เผยแพร่ | 2018-01-12 |
คะแนน | 2.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | http://github.com/NeekSandhu |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repo creation date checker for Github", "version": "1.1.0", "description": "Check creation date and last updated date of repo's on Github.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "author": "http:\/\/github.com\/NeekSandhu", "background": { "scripts": [ "src\/js\/bg.js" ], "persistent": true }, "homepage_url": "http:\/\/github.com\/NeekSandhu", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/js\/injected.js" ], "css": [ "src\/css\/main.css" ], "run_at": "document_start" } ] } |