Stack Copy Button
A copy button for Stack Overflow code boxes
What is Stack Copy Button?
Stack Copy Button is a Chrome extension developed by MrMino, and its main feature is "A copy button for Stack Overflow code boxes".
Extension Screenshots
Download Stack Copy Button Extension CRX File
Download Stack Copy Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Stack Copy Button |
ID | dkejincbnheemdddmbiggcnlidffpedf |
Official URL | https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf |
Description | A copy button for Stack Overflow code boxes |
File Size | 40.45 KB |
Installation Count | 336 |
Current Version | 1.1.1 |
Last Updated | 2016-04-14 |
Publish Date | 2016-04-14 |
Rating | 5.00/5 Total 10 Ratings |
Developer | MrMino |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/MrMino/StackOverflowCtrlC |
Supported Languages | 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" ] } ] } |