Skip to content

Releases: roedesh/copyguard

Version 2.0.0

21 Feb 22:17
2475e50
Compare
Choose a tag to compare

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 the ClipboardEvent 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.

Version 1.3.0

01 Apr 18:15
06c626c
Compare
Choose a tag to compare

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

25 Feb 20:08
Compare
Choose a tag to compare

Changed

  • Fixed error caused by undefined whitelist value

Version 1.2.0

10 Feb 09:42
Compare
Choose a tag to compare

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

Version 1.1.0

15 Dec 18:29
a87a08a
Compare
Choose a tag to compare
  • 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.