Open in GitHub1s

Add a new navigation option to open GitHub repositories in GitHub1s.

Open in GitHub1sคืออะไร?

Open in GitHub1s เป็นส่วนขยายของ Chrome ที่พัฒนาโดย zacharysmith และคุณลักษณะหลักของมันคือ "Add a new navigation option to open GitHub repositories in GitHub1s."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open in GitHub1s

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

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

                        GitHub1s is a web-app for viewing GitHub repository files online, using a web-compiled version of VSCode. This extension introduces a new UI button to the GitHub repository file navigation bar, enabling users to easily open the repository inside the GitHub1s website.                    

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

ชื่อ Open in GitHub1s Open in GitHub1s
ID iijaagbkdohcopmmohlgfkcloefoeaoj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-in-github1s/iijaagbkdohcopmmohlgfkcloefoeaoj
คำอธิบาย Add a new navigation option to open GitHub repositories in GitHub1s.
ขนาดไฟล์ 127 KB
จำนวนการติดตั้ง 1,601
เวอร์ชันปัจจุบัน 1.5
อัปเดตครั้งล่าสุด 2022-05-10
วันที่เผยแพร่ 2021-08-18
ผู้พัฒนา zacharysmith
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Cutwell/github1s-chrome-extension
URL หน้าช่วยเหลือ https://github.com/Cutwell/github1s-chrome-extension
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Open in GitHub1s",
    "version": "1.5",
    "description": "Add a new navigation option to open GitHub repositories in GitHub1s.",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "data\/img\/icon48.png",
            "128": "data\/img\/icon128.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "48": "data\/img\/icon48.png",
        "128": "data\/img\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "data\/js\/content.js"
            ],
            "css": [
                "data\/css\/extension.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}