Github Time Travel
Browse commits by date on Github
Github Time Travelคืออะไร?
Github Time Travel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lingua Franca และคุณลักษณะหลักของมันคือ "Browse commits by date on Github"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Time Travel
ดาวน์โหลดไฟล์ส่วนขยาย Github Time Travel ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a button to a Github repo's commit log for browsing commits by date. Github: https://github.com/nathancahill/github-time-travel
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Time Travel |
ID | gdaikofkgknonbdhgomechckcjlcpgpg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-time-travel/gdaikofkgknonbdhgomechckcjlcpgpg |
คำอธิบาย | Browse commits by date on Github |
ขนาดไฟล์ | 14.6 KB |
จำนวนการติดตั้ง | 85 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2015-08-29 |
วันที่เผยแพร่ | 2015-08-29 |
ผู้พัฒนา | Lingua Franca |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/nathancahill/github-time-travel |
URL หน้าช่วยเหลือ | https://github.com/nathancahill/github-time-travel/issues |
URL หน้านโยบายความเป็นส่วนตัว | https://linguafran.ca/privacy.html |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Time Travel", "version": "1.0.1", "description": "Browse commits by date on Github", "author": "Nathan Cahill", "permissions": [ "https:\/\/*.github.com\/", "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*\/*" ], "css": [ "pikaday\/pikaday.css" ], "js": [ "pikaday\/pikaday.js", "github-time-travel.js" ] } ] } |