Text Watermark Remover is a Chrome extension that removes hidden watermark characters from copied text on web pages.
- Intercepts clipboard operations (
navigator.clipboard.writeText
,navigator.clipboard.write
) anddocument.execCommand('copy')
- Removes watermark characters: U+200B, U+200C, U+200D, U+2060, U+FEFF, U+202F, U+00A0
- Clone or download the repository to a local directory.
- Open Chrome and navigate to
chrome://extensions
. - Enable Developer mode.
- Click Load unpacked and select the extension directory.
- manifest.json
content_scripts.run_at
: set todocument_start
to override clipboard APIs earlyweb_accessible_resources
: includeinject.js
for page injection- Permissions:
scripting
, and host permissions for target domains
- Modify
inject.js
orcontent.js
as needed. - Reload the extension in
chrome://extensions
. - Reload target web pages to apply changes.