Github Vanced

An ultimate chrome extension to customize and streamline your GitHub experience!

Github Vancedคืออะไร?

Github Vanced เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bhumijgupta และคุณลักษณะหลักของมันคือ "An ultimate chrome extension to customize and streamline your GitHub experience!"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        An ultimate chrome extension to customize and streamline your GitHub experience with a lifetime promise of no ads and no data collection
Features -
1. Website wide dark mode
2. Colors contribution chart to avoid distraction
3. Easy toggle switches to enable and disable features                    

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

ชื่อ Github Vanced Github Vanced
ID apidmenkobkfjiffjmapgjdapmpaneck
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/github-vanced/apidmenkobkfjiffjmapgjdapmpaneck
คำอธิบาย An ultimate chrome extension to customize and streamline your GitHub experience!
ขนาดไฟล์ 57.45 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 0.8.4
อัปเดตครั้งล่าสุด 2019-07-12
วันที่เผยแพร่ 2019-07-12
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา bhumijgupta
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/bhumijgupta/Github-vanced
URL หน้าช่วยเหลือ https://github.com/bhumijgupta/Github-vanced/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Vanced",
    "description": "An ultimate chrome extension to customize and streamline your GitHub experience!",
    "version": "0.8.4",
    "author": "Bhumij Gupta",
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "js": [
                "colorify.js",
                "darktheme.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_page": "popup.html",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}