github-code-viewer

A Chromium extension to view GitHub code faster and easier.

github-code-viewerとは何ですか?

github-code-viewerはxcv58によって開発されたChromeの拡張機能で、その主な機能は「A Chromium extension to view GitHub code faster and easier.」です。

拡張機能のスクリーンショット

screenshot

github-code-viewer拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        ]
    }
}