Copy Paste Hack Blocker
Protects the user from having the selected text of a web page changed when they are trying to copy text
Vad är Copy Paste Hack Blocker?
Copy Paste Hack Blocker är en Chrome-tillägg utvecklad av Y Schwartz, och dess huvudfunktion är "Protects the user from having the selected text of a web page changed when they are trying to copy text".
Tilläggsskärmbilder
Ladda ner Copy Paste Hack Blocker-förlängningens CRX-fil
Ladda ner Copy Paste Hack Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Copy Paste Hack Blocker |
ID | fkfnmcncicigjajpfdgpkjohbondnkld |
Officiell webbadress | https://chromewebstore.google.com/detail/copy-paste-hack-blocker/fkfnmcncicigjajpfdgpkjohbondnkld |
Beskrivning | Protects the user from having the selected text of a web page changed when they are trying to copy text |
Filstorlek | 23.34 KB |
Antal Installationer | 125 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2022-01-13 |
Publiceringsdatum | 2022-01-07 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | Y Schwartz |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/judaschwartz/copy-paste-hack-blocker |
Stödda Språk | 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" ] } ] } |