Releases: roedesh/copyguard
Releases · roedesh/copyguard
Version 2.0.0
Added
- Added support for Manifest V3
Changes
- Moved to Bun
- Replaced React with Svelte
- Greatly simplified the way clipboard data is checked for alterations
- Instead of comparing text, the extension now simply checks if
clipboardData
of theClipboardEvent
contains any data. This only happens when it was altered by Javascript. In all other cases this field is left empty by the browser as a security measure.
- Instead of comparing text, the extension now simply checks if
Version 1.3.0
Added
- Insights page
- Overview of domains that alter clipboard data, and how often
- Detail page for each domain, which includes the "before and after" of the clipboard data for each warning that was triggered.
- Includes a button to save the data to a JSON file
Changed
- Hidden elements without any text inside do no longer trigger a warning, as they pose no danger. This fixes some false positives.
Version 1.2.1
Changed
- Fixed error caused by undefined whitelist value
Version 1.2.0
Added
- Settings page
- Whitelisting
- About section
Changed
- Better Typescript support
- Replaced
webextension-polyfill-ts
with@types/webextension-polyfil
- Updated unit tests to support this migration
- Removed Mockzilla
- Replaced
Version 1.1.0
- You will now receive a warning if your text selection contains hidden or offscreen elements
- The content script will now run before any other script, which fixes some false positives.