Copy Paste Hack Blocker
Protects the user from having the selected text of a web page changed when they are trying to copy text
Τι είναι το Copy Paste Hack Blocker;
Το Copy Paste Hack Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Y Schwartz, και η κύρια λειτουργία του είναι "Protects the user from having the selected text of a web page changed when they are trying to copy text".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Copy Paste Hack Blocker
Λήψη αρχείων επέκτασης Copy Paste Hack Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a Chrome plugin that protects the browser from the copy paste hack that is shown here https://marco97pa.github.io/copy-paste-hack-js/ By default a confirmation dialogue will be displayed if the copied text is different than the selected text the user can change the setting to have the copied text be auto corrected in the clipboard without confirmation.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Copy Paste Hack Blocker |
ID | fkfnmcncicigjajpfdgpkjohbondnkld |
Επίσημο URL | https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld |
Περιγραφή | Protects the user from having the selected text of a web page changed when they are trying to copy text |
Μέγεθος Αρχείου | 23.34 KB |
Αριθμός Εγκαταστάσεων | 125 |
Τρέχουσα Έκδοση | 1.0.3 |
Τελευταία Ενημέρωση | 2022-01-13 |
Ημερομηνία Δημοσίευσης | 2022-01-07 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Y Schwartz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/judaschwartz/copy-paste-hack-blocker |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Copy Paste Hack Blocker", "description": "Protects the user from having the selected text of a web page changed when they are trying to copy text", "options_page": "popup.html", "version": "1.0.3", "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage", "clipboardRead", "clipboardWrite" ], "icons": { "16": "icon.png", "128": "icon.png" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "index.js" ] } ] } |