Stack Copy Button

A copy button for Stack Overflow code boxes

Wat is Stack Copy Button?

Stack Copy Button is een Chrome-extensie ontwikkeld door MrMino, en de belangrijkste functie is "A copy button for Stack Overflow code boxes".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stack Copy Button

Download Stack Copy Button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Stack Copy Button Stack Copy Button
ID dkejincbnheemdddmbiggcnlidffpedf
Officiële URL https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf
Beschrijving A copy button for Stack Overflow code boxes
Bestandsgrootte 40.45 KB
Aantal Installaties 336
Huidige Versie 1.1.1
Laatst Bijgewerkt 2016-04-14
Publicatiedatum 2016-04-14
Beoordeling 5.00/5 Totaal 10 Beoordelingen
Ontwikkelaar MrMino
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/MrMino/StackOverflowCtrlC
Ondersteunde Talen 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"
            ]
        }
    ]
}