Stack Copy Button

A copy button for Stack Overflow code boxes

Qu'est-ce que Stack Copy Button ?

Stack Copy Button est une extension Chrome développée par MrMino, et sa fonction principale est "A copy button for Stack Overflow code boxes".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Stack Copy Button

Téléchargez les fichiers d'extension Stack Copy Button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Stack Copy Button Stack Copy Button
ID dkejincbnheemdddmbiggcnlidffpedf
URL Officiel https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf
Description A copy button for Stack Overflow code boxes
Taille du Fichier 40.45 KB
Nombre d'Installations 336
Version Actuelle 1.1.1
Dernière Mise à Jour 2016-04-14
Date de Publication 2016-04-14
Évaluation 5.00/5 Total 10 Évaluations
Développeur MrMino
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/MrMino/StackOverflowCtrlC
Langues Prises en Charge 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"
            ]
        }
    ]
}