Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
什麼是Github Copy File Extension?
Github Copy File Extension是由itayadler開發的Chrome擴展程式,該擴展的主要功能是“A chrome extension that adds a Copy file to clipboard button to Github code browser”。
擴展截圖
下載Github Copy File Extension擴展crx文件
下載Github Copy File Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Sometimes you just want to copy code from Github's code viewer and don't want to click on the Raw button, and hit Ctrl+A and Ctrl+C to get the code from the new tab                     擴展基本資訊
| 名稱 |   |  
| ID | gnbcglemedljbhbgpdonmndgofjghchj | 
| 官方網址 | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj | 
| 簡介 | A chrome extension that adds a Copy file to clipboard button to Github code browser | 
| 檔案大小 | 36.83 KB | 
| 安裝次數 | 38 | 
| 目前版本 | 0.0.2 | 
| 更新時間 | 2020-06-02 | 
| 上架時間 | 2020-06-02 | 
| 開發者 | itayadler | 
| 付費類型 | free | 
| 擴展官網 | https://github.com/itayadler/github-file-copy | 
| 說明頁面URL | https://github.com/itayadler/github-file-copy/issues | 
| 支援的語言 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that adds a Copy file to clipboard button to Github code browser",
    "version": "0.0.2",
    "name": "Github Copy File Extension",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentscript.js"
            ]
        }
    ],
    "permissions": [
        "webNavigation"
    ]
}  |  |