Stack Overflow Copy Code

Copy code snippets from Stack Overflow.

What is Stack Overflow Copy Code?

Stack Overflow Copy Code is a Chrome extension developed by adam.gonen, and its main feature is "Copy code snippets from Stack Overflow.".

Extension Screenshots

screenshot
screenshot

Download Stack Overflow Copy Code Extension CRX File

Download Stack Overflow Copy Code 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

                        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.                    

Extension Basic Information

Name Stack Overflow Copy Code Stack Overflow Copy Code
ID aeogcccfipojajmfapdojkjcmoghfdae
Official URL https://chromewebstore.google.com/detail/stack-overflow-copy-code/aeogcccfipojajmfapdojkjcmoghfdae
Description Copy code snippets from Stack Overflow.
File Size 8.62 KB
Installation Count 479
Current Version 0.0.1
Last Updated 2019-05-31
Publish Date 2019-05-30
Rating 5.00/5 Total 5 Ratings
Developer adam.gonen
Email [email protected]
Payment Type free
Supported Languages 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
        }
    ]
}