anti-copy-pasta

Disables text selection on stackoverflow.com

Was ist anti-copy-pasta?

anti-copy-pasta ist eine Chrome-Erweiterung, die von Travis Paul entwickelt wurde, und ihr Hauptmerkmal ist "Disables text selection on stackoverflow.com".

Erweiterungsscreenshots

screenshot
screenshot

anti-copy-pasta-Erweiterungs-CRX-Datei herunterladen

Laden Sie anti-copy-pasta-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 :)                    

Grundlegende Informationen zur Erweiterung

Name anti-copy-pasta anti-copy-pasta
ID bpmjllnllinemdobdpbphdnoaanjpkkb
Offizielle URL https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb
Beschreibung Disables text selection on stackoverflow.com
Dateigröße 8.21 KB
Installationsanzahl 66
Aktuelle Version 1.0.1
Letztes Update 2016-06-02
Veröffentlichungsdatum 2016-06-01
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Travis Paul
Zahlungsart free
Erweiterungswebsite https://github.com/TravisPaul/crx-anti-copy-pasta
Hilfeseite URL https://github.com/TravisPaul/crx-anti-copy-pasta/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}