GitHub Real Names
Use real names on GitHub
GitHub Real Namesคืออะไร?
GitHub Real Names เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ForbesLindesay และคุณลักษณะหลักของมันคือ "Use real names on GitHub"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Real Names
ดาวน์โหลดไฟล์ส่วนขยาย GitHub Real Names ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds a button to let you toggle real names vs. usernames in GitHub.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | GitHub Real Names |
ID | edfnfekndkopmlejjmlplpceflfldoae |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-real-names/edfnfekndkopmlejjmlplpceflfldoae |
คำอธิบาย | Use real names on GitHub |
ขนาดไฟล์ | 38.66 KB |
จำนวนการติดตั้ง | 633 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2020-08-19 |
วันที่เผยแพร่ | 2018-03-26 |
คะแนน | 3.60/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | ForbesLindesay |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Real Names", "description": "Use real names on GitHub", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "version": "1.3.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_title": "Toggle using real GitHub real names" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |