Stack Overflow Copy Code

Copy code snippets from Stack Overflow.

Qu'est-ce que Stack Overflow Copy Code ?

Stack Overflow Copy Code est une extension Chrome développée par adam.gonen, et sa fonction principale est "Copy code snippets from Stack Overflow.".

Captures d'Écran de l'Extension

screenshot
screenshot

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

Téléchargez les fichiers d'extension Stack Overflow Copy Code 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

                        Adds a copy button to the code snippets from Stack Overflow.

Makes it easy to use a code snippet you find on Stack Overflow by allowing you to copy the code with one click.                    

Informations de Base sur l'Extension

Nom Stack Overflow Copy Code Stack Overflow Copy Code
ID aeogcccfipojajmfapdojkjcmoghfdae
URL Officiel https://chromewebstore.google.com/detail/stack-overflow-copy-code/aeogcccfipojajmfapdojkjcmoghfdae
Description Copy code snippets from Stack Overflow.
Taille du Fichier 8.62 KB
Nombre d'Installations 479
Version Actuelle 0.0.1
Dernière Mise à Jour 2019-05-31
Date de Publication 2019-05-30
Évaluation 5.00/5 Total 5 Évaluations
Développeur adam.gonen
Email [email protected]
Type de Paiement free
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stack Overflow Copy Code",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Copy code snippets from Stack Overflow.",
    "permissions": [
        "http:\/\/stackoverflow.com\/*",
        "https:\/\/stackoverflow.com\/*"
    ],
    "icons": {
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/stackoverflow.com\/*",
                "https:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "stackcopy.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}