Github Copy File Extension
A chrome extension that adds a Copy file to clipboard button to Github code browser
Apa itu Github Copy File Extension?
Github Copy File Extension adalah ekstensi Chrome yang dikembangkan oleh itayadler, dan fitur utamanya adalah "A chrome extension that adds a Copy file to clipboard button to Github code browser".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github Copy File Extension
Unduh file ekstensi Github Copy File Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Github Copy File Extension |
ID | gnbcglemedljbhbgpdonmndgofjghchj |
URL Resmi | https://chromewebstore.google.com/detail/github-copy-file-extensio/gnbcglemedljbhbgpdonmndgofjghchj |
Deskripsi | A chrome extension that adds a Copy file to clipboard button to Github code browser |
Ukuran File | 36.83 KB |
Jumlah Instalasi | 38 |
Versi Saat Ini | 0.0.2 |
Terakhir Diperbarui | 2020-06-02 |
Tanggal Publikasi | 2020-06-02 |
Pengembang | itayadler |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/itayadler/github-file-copy |
URL Halaman Bantuan | https://github.com/itayadler/github-file-copy/issues |
Bahasa yang Didukung | 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" ] } |