anti-copy-pasta
Disables text selection on stackoverflow.com
Wat is anti-copy-pasta?
anti-copy-pasta is een Chrome-extensie ontwikkeld door Travis Paul, en de belangrijkste functie is "Disables text selection on stackoverflow.com".
Extensie Screenshots
Download het CRX-bestand van de extensie anti-copy-pasta
Download anti-copy-pasta-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 :)
Basisinformatie over de Extensie
Naam | anti-copy-pasta |
ID | bpmjllnllinemdobdpbphdnoaanjpkkb |
Officiële URL | https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb |
Beschrijving | Disables text selection on stackoverflow.com |
Bestandsgrootte | 8.21 KB |
Aantal Installaties | 66 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2016-06-02 |
Publicatiedatum | 2016-06-01 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Travis Paul |
Betalingswijze | free |
Extensiewebsite | https://github.com/TravisPaul/crx-anti-copy-pasta |
Help Pagina-URL | https://github.com/TravisPaul/crx-anti-copy-pasta/issues |
Ondersteunde Talen | 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" ] } ] } |