Github Copy File Extension

A chrome extension that adds a Copy file to clipboard button to Github code browser

What is Github Copy File Extension?

Github Copy File Extension is a Chrome extension developed by itayadler, and its main feature is "A chrome extension that adds a Copy file to clipboard button to Github code browser".

Extension Screenshots

screenshot

Download Github Copy File Extension Extension CRX File

Download Github Copy File Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Github Copy File Extension Github Copy File Extension
ID gnbcglemedljbhbgpdonmndgofjghchj
Official URL https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj
Description A chrome extension that adds a Copy file to clipboard button to Github code browser
File Size 36.83 KB
Installation Count 38
Current Version 0.0.2
Last Updated 2020-06-02
Publish Date 2020-06-02
Developer itayadler
Payment Type free
Extension Website https://github.com/itayadler/github-file-copy
Help Page URL https://github.com/itayadler/github-file-copy/issues
Supported Languages 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"
    ]
}