Browser extension¶
Chop AI slop in any text field, on any site, without leaving the page you are on. The extension runs the same engine as this site, compiled to WebAssembly and hosted inside the extension. Your text never leaves the browser.
What it does¶
- Press the hotkey, or click the small chop button that appears at the corner of a focused field, and the field is rewritten in place.
- A badge shows the slop score before and after, so you see how much came out.
- The toolbar icon opens a paste-and-chop popup for one-off text.
Install¶
- Chrome and Edge: the Chrome Web Store.
- Firefox: Firefox Add-ons.
Or run it from source, which is also how you hack on it:
- Build it from the repo root with
make extensionfor Chrome or Edge, ormake firefox-packagefor Firefox. - Chrome or Edge: open
chrome://extensions(oredge://extensions), turn on Developer mode, choose Load unpacked, and pick theextension/folder. - Firefox: open
about:debugging, choose This Firefox, then Load Temporary Add-on, and pickextension/manifest.json.
Use it¶
- Hotkey. Focus a field and press
Ctrl+Shift+U(Command+Shift+Uon a Mac). Change it atchrome://extensions/shortcuts. - Chop button. A small button sits at the bottom-right of the focused field. Click it for the same chop, no shortcut to remember.
- Popup. Click the toolbar icon to paste text and chop it on its own, with the score.
Your voice¶
Open the options page from the popup's Settings link. It holds your voice, the same three lists as the command line and web app:
- Keep protects words and phrases so no rule or preset cuts them.
- Prefer swaps a word or phrase to the one you want.
- Avoid flags your own words wherever they appear.
Pick which presets to apply, or import a voice.json you already have. Settings apply to
every chop, in every field.
Privacy¶
The rules engine runs entirely inside the extension. No text is sent anywhere, there is no account, and it works offline. The optional model rewrite on the web app is a separate, opt-in feature. The extension's in-place chop is all local.
Build from source¶
make extension # build and stage the engine into extension/
make extension-package # zip it for a store upload
See the extension README for details.