Widescreen for GitHub
Toggle the width of GitHub with a click
Widescreen for GitHubคืออะไร?
Widescreen for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Søren Louv-Jansen และคุณลักษณะหลักของมันคือ "Toggle the width of GitHub with a click"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Widescreen for GitHub
ดาวน์โหลดไฟล์ส่วนขยาย Widescreen for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Often the lines of code on Github are too long to fit within the fixed 920px width. This extension will take full advantage of your screen and show the code in 100% width! It works for all content on Github: PRs, commits, Gists, etc. It is easy to toggle the width on/off whenever you need it - it even comes with a nice transition. Bugs: https://github.com/sqren/github-widescreen/issues Fork: https://github.com/sqren/github-widescreen
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Widescreen for GitHub |
ID | elikdceclccjilahimjfceoalhdbndan |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/widescreen-for-github/elikdceclccjilahimjfceoalhdbndan |
คำอธิบาย | Toggle the width of GitHub with a click |
ขนาดไฟล์ | 1.94 MB |
จำนวนการติดตั้ง | 2,604 |
เวอร์ชันปัจจุบัน | 0.7.5 |
อัปเดตครั้งล่าสุด | 2020-11-10 |
วันที่เผยแพร่ | 2020-07-02 |
คะแนน | 4.21/5 รวมทั้งหมด 24 คะแนน |
ผู้พัฒนา | Søren Louv-Jansen |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sqren/github-widescreen |
URL หน้าช่วยเหลือ | https://github.com/sqren/github-widescreen |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Widescreen for GitHub", "short_name": "Widescreen for Github", "description": "Toggle the width of GitHub with a click", "version": "0.7.5", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "permissions": [ "https:\/\/github.com\/*", "storage" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" } }, "background": { "scripts": [ "background-scripts.js" ] }, "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.github.com\/*" ], "js": [ "content-scripts.js" ], "css": [ "content-styles.css" ] } ] } |