anti-copy-pasta

Disables text selection on stackoverflow.com

Cos'è anti-copy-pasta?

anti-copy-pasta è un'estensione di Chrome sviluppata da Travis Paul, e la sua funzione principale è "Disables text selection on stackoverflow.com".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione anti-copy-pasta

Scarica i file di estensione anti-copy-pasta in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome anti-copy-pasta anti-copy-pasta
ID bpmjllnllinemdobdpbphdnoaanjpkkb
URL Ufficiale https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb
Descrizione Disables text selection on stackoverflow.com
Dimensione del File 8.21 KB
Conteggio Installazioni 66
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-06-02
Data di Pubblicazione 2016-06-01
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Travis Paul
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/TravisPaul/crx-anti-copy-pasta
URL della Pagina di Aiuto https://github.com/TravisPaul/crx-anti-copy-pasta/issues
Lingue Supportate 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"
            ]
        }
    ]
}