Stack Copy Button
A copy button for Stack Overflow code boxes
Apa itu Stack Copy Button?
Stack Copy Button adalah ekstensi Chrome yang dikembangkan oleh MrMino, dan fitur utamanya adalah "A copy button for Stack Overflow code boxes".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Stack Copy Button
Unduh file ekstensi Stack Copy Button 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
Faster code copying from Stack Overflow website! This extension adds a copy button to every code box in stack overflow. Also works with custom layout styles (eg. Stylish). Hover your mouse over the code, click copy, and save time. No text selecting or scrolling required. https://github.com/MrMino/StackCtrlC Made by MrMino I (this extension's author) am not affiliated with Stack Overflow, Stack Exchange, or any other site from Stack Exchange Network.
Informasi Dasar Ekstensi
Nama | Stack Copy Button |
ID | dkejincbnheemdddmbiggcnlidffpedf |
URL Resmi | https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf |
Deskripsi | A copy button for Stack Overflow code boxes |
Ukuran File | 40.45 KB |
Jumlah Instalasi | 336 |
Versi Saat Ini | 1.1.1 |
Terakhir Diperbarui | 2016-04-14 |
Tanggal Publikasi | 2016-04-14 |
Penilaian | 5.00/5 Total 10 Penilaian |
Pengembang | MrMino |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/MrMino/StackOverflowCtrlC |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stack Copy Button", "author": "MrMino", "description": "A copy button for Stack Overflow code boxes", "version": "1.1.1", "browser_action": { "default_icon": "icon32.png" }, "icons": { "32": "icon32.png", "128": "icon128.png" }, "permissions": [ "*:\/\/stackoverflow.com\/*", "clipboardWrite" ], "content_scripts": [ { "matches": [ "*:\/\/*.stackoverflow.com\/*" ], "js": [ "jquery-1.12.3.min.js", "copybox.min.js" ] } ] } |