Github Copy File Extension

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

Hvad er Github Copy File Extension?

Github Copy File Extension er en Chrome-udvidelse udviklet af itayadler, og dens hovedfunktion er "A chrome extension that adds a Copy file to clipboard button to Github code browser".

Udvidelsesskærmbilleder

screenshot

Download Github Copy File Extension-udvidelses-CRX-fil

Download Github Copy File Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Github Copy File Extension Github Copy File Extension
ID gnbcglemedljbhbgpdonmndgofjghchj
Officiel URL https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj
Beskrivelse A chrome extension that adds a Copy file to clipboard button to Github code browser
Filstørrelse 36.83 KB
Antal Installationer 38
Nuværende Version 0.0.2
Senest Opdateret 2020-06-02
Udgivelsesdato 2020-06-02
Udvikler itayadler
Betalingsmetode free
Udvidelseswebsted https://github.com/itayadler/github-file-copy
Hjælpeside-URL https://github.com/itayadler/github-file-copy/issues
Understøttede Sprog 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"
    ]
}