anti-copy-pasta
Disables text selection on stackoverflow.com
Qu'est-ce que anti-copy-pasta ?
anti-copy-pasta est une extension Chrome développée par Travis Paul, et sa fonction principale est "Disables text selection on stackoverflow.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension anti-copy-pasta
Téléchargez les fichiers d'extension anti-copy-pasta au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 :)
Informations de Base sur l'Extension
Nom | anti-copy-pasta |
ID | bpmjllnllinemdobdpbphdnoaanjpkkb |
URL Officiel | https://chromewebstore.google.com/detail/anti-copy-pasta/bpmjllnllinemdobdpbphdnoaanjpkkb |
Description | Disables text selection on stackoverflow.com |
Taille du Fichier | 8.21 KB |
Nombre d'Installations | 66 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2016-06-02 |
Date de Publication | 2016-06-01 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | Travis Paul |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/TravisPaul/crx-anti-copy-pasta |
URL de la Page d'Aide | https://github.com/TravisPaul/crx-anti-copy-pasta/issues |
Langues Prises en Charge | 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" ] } ] } |