Wide GitHub

Change all GitHub repository and gist pages to be full width and dynamically sized.

Wide GitHubคืออะไร?

Wide GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xthexder และคุณลักษณะหลักของมันคือ "Change all GitHub repository and gist pages to be full width and dynamically sized."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wide GitHub

ดาวน์โหลดไฟล์ส่วนขยาย Wide GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Features:
 - Read long lines of code without scrolling left to right
 - See more documentation at once when using large / high-dpi monitors
 - Easily toggleable for viewing size-dependent docs or wiki pages.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Wide GitHub Wide GitHub
ID kaalofacklcidaampbokdplbklpeldpj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wide-github/kaalofacklcidaampbokdplbklpeldpj
คำอธิบาย Change all GitHub repository and gist pages to be full width and dynamically sized.
ขนาดไฟล์ 17.76 KB
จำนวนการติดตั้ง 7,602
เวอร์ชันปัจจุบัน 1.6.5 MV3
อัปเดตครั้งล่าสุด 2024-02-07
วันที่เผยแพร่ 2020-06-26
คะแนน 4.55/5 รวมทั้งหมด 66 คะแนน
ผู้พัฒนา xthexder
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/xthexder/wide-github
URL หน้าช่วยเหลือ https://github.com/xthexder/wide-github/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wide GitHub",
    "description": "Change all GitHub repository and gist pages to be full width and dynamically sized.",
    "version": "1.6.5",
    "version_name": "1.6.5 MV3",
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Toggle Wide GitHub"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "css": [
                "wide-github.css"
            ],
            "js": [
                "wide-github-toggle.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}