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
官方網址 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"
        ]
    }
}