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