Open in GitHub1s

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

什麼是Open in GitHub1s?

Open in GitHub1s是由zacharysmith開發的Chrome擴展程式,該擴展的主要功能是“Add a new navigation option to open GitHub repositories in GitHub1s.”。

擴展截圖

screenshot

下載Open in GitHub1s擴展crx文件

下載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
官方網址 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
}