Github Copy File Extension

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

Was ist Github Copy File Extension?

Github Copy File Extension ist eine Chrome-Erweiterung, die von itayadler entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that adds a Copy file to clipboard button to Github code browser".

Erweiterungsscreenshots

screenshot

Github Copy File Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Copy File Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Github Copy File Extension Github Copy File Extension
ID gnbcglemedljbhbgpdonmndgofjghchj
Offizielle URL https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj
Beschreibung A chrome extension that adds a Copy file to clipboard button to Github code browser
Dateigröße 36.83 KB
Installationsanzahl 38
Aktuelle Version 0.0.2
Letztes Update 2020-06-02
Veröffentlichungsdatum 2020-06-02
Entwickler itayadler
Zahlungsart free
Erweiterungswebsite https://github.com/itayadler/github-file-copy
Hilfeseite URL https://github.com/itayadler/github-file-copy/issues
Unterstützte Sprachen 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"
    ]
}