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
公式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
Eメール [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
}