Releases: yadavnikhil03/CTFuker
CTFuker (v2.1.0)
What's New
🐛 Bug Fix: Screenshot / Image Paste Now Works
Previously, taking a screenshot (Win+Shift+S, PrintScreen, etc.) and pasting it with the extension enabled would silently fail.
Root cause: The extension blocked paste events in Browser's isolated content-script world, preventing websites from running their own paste handlers needed to insert clipboard images.
Fix: A new content/inject.js is injected into the page's main JavaScript world. It wraps EventTarget.prototype.addEventListener so site paste handlers cannot call preventDefault() (keeping force-paste intact), while still running — allowing Discord, WhatsApp Web, Gmail etc. to process image pastes normally.
Changes
- Added
content/inject.js— main-world paste interception script - Updated
content/main.js— injectsinject.jsinstead of isolated-world interception - Updated
manifest.json— addedinject.jstoweb_accessible_resources
Full Changelog: v2.1.0...v2.1.0
v1.0.0
CTFuker (v1.0.0)
A small browser extension I built for fun.
Some websites block copy/paste for no good reason.
This extension simply removes those restrictions and lets you use your clipboard normally.
Features
- Enable copy & paste on restricted websites
- Works on most sites
- Simple and minimal UI
Why this exists
Got tired of sites disabling basic browser functionality, so I made a quick fix for it.