github-code-viewer

A Chromium extension to view GitHub code faster and easier.

github-code-viewerคืออะไร?

github-code-viewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย xcv58 และคุณลักษณะหลักของมันคือ "A Chromium extension to view GitHub code faster and easier."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย github-code-viewer

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

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

                        View GitHub code in VSCode.                    

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

ชื่อ github-code-viewer github-code-viewer
ID ecddapgifccgblebfibdgkagfbdagjfn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-code-viewer/ecddapgifccgblebfibdgkagfbdagjfn
คำอธิบาย A Chromium extension to view GitHub code faster and easier.
ขนาดไฟล์ 19.39 KB
จำนวนการติดตั้ง 609
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2021-02-10
วันที่เผยแพร่ 2021-02-10
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา xcv58
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/febaoshan/edge-extensions-github-code-viewer
URL หน้าช่วยเหลือ https://github.com/febaoshan/edge-extensions-github-code-viewer/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "github-code-viewer",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "A Chromium extension to view GitHub code faster and easier.",
    "icons": {
        "16": "icons\/logo16x16.png",
        "32": "icons\/logo32x32.png",
        "48": "icons\/logo48x48.png",
        "128": "icons\/logo128x128.png"
    },
    "page_action": {
        "default_popup": "popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/background.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "src\/background.js"
    ],
    "homepage_url": "https:\/\/github.com\/febaoshan\/edge-extensions-github-code-viewer",
    "permissions": [
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    }
}