anti-copy-pasta

Disables text selection on stackoverflow.com

What is anti-copy-pasta?

anti-copy-pasta is a Chrome extension developed by Travis Paul, and its main feature is "Disables text selection on stackoverflow.com".

Extension Screenshots

screenshot
screenshot

Download anti-copy-pasta Extension CRX File

Download anti-copy-pasta 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

                        Installing this extension in your Chrome browser (or perhaps a lazy co-worker's...) will prevent you from selecting (and therefore also copy+pasting) any text from stackoverflow.com.

Enjoy :)                    

Extension Basic Information

Name anti-copy-pasta anti-copy-pasta
ID bpmjllnllinemdobdpbphdnoaanjpkkb
Official URL https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb
Description Disables text selection on stackoverflow.com
File Size 8.21 KB
Installation Count 66
Current Version 1.0.1
Last Updated 2016-06-02
Publish Date 2016-06-01
Rating 5.00/5 Total 6 Ratings
Developer Travis Paul
Payment Type free
Extension Website https://github.com/TravisPaul/crx-anti-copy-pasta
Help Page URL https://github.com/TravisPaul/crx-anti-copy-pasta/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "permissions": [
        "http:\/\/stackoverflow.com\/*",
        "https:\/\/stackoverflow.com\/*"
    ],
    "offline_enabled": true,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/stackoverflow.com\/*",
                "https:\/\/stackoverflow.com\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}