Github Copy File Extension

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

Co to jest Github Copy File Extension?

Github Copy File Extension to rozszerzenie Chrome opracowane przez itayadler, a jego główną funkcją jest „A chrome extension that adds a Copy file to clipboard button to Github code browser”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Github Copy File Extension

Pobierz pliki rozszerzeń Github Copy File Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Copy File Extension Github Copy File Extension
ID gnbcglemedljbhbgpdonmndgofjghchj
Oficjalny URL https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj
Opis A chrome extension that adds a Copy file to clipboard button to Github code browser
Rozmiar pliku 36.83 KB
Liczba instalacji 38
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2020-06-02
Data Publikacji 2020-06-02
Deweloper itayadler
Typ Płatności free
Strona Rozszerzenia https://github.com/itayadler/github-file-copy
Adres URL Strony Pomocy https://github.com/itayadler/github-file-copy/issues
Obsługiwane Języki 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"
    ]
}