Skip to content

Releases: yadavnikhil03/CTFuker

CTFuker (v2.1.0)

03 May 16:00

Choose a tag to compare

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 — injects inject.js instead of isolated-world interception
  • Updated manifest.json — added inject.js to web_accessible_resources

Full Changelog: v2.1.0...v2.1.0

v1.0.0

28 Mar 15:16

Choose a tag to compare

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.