Github Copy File Extension

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

Cos'è Github Copy File Extension?

Github Copy File Extension è un'estensione di Chrome sviluppata da itayadler, e la sua funzione principale è "A chrome extension that adds a Copy file to clipboard button to Github code browser".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github Copy File Extension

Scarica i file di estensione Github Copy File Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github Copy File Extension Github Copy File Extension
ID gnbcglemedljbhbgpdonmndgofjghchj
URL Ufficiale https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj
Descrizione A chrome extension that adds a Copy file to clipboard button to Github code browser
Dimensione del File 36.83 KB
Conteggio Installazioni 38
Versione Corrente 0.0.2
Ultimo Aggiornamento 2020-06-02
Data di Pubblicazione 2020-06-02
Sviluppatore itayadler
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/itayadler/github-file-copy
URL della Pagina di Aiuto https://github.com/itayadler/github-file-copy/issues
Lingue Supportate 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"
    ]
}