Sliding Cat Cursor for Chrome Extension is a tiny Chrome/Edge extension that shows a cutout sliding cat near your cursor when you move the mouse downward. Move upward and the cat fades away.
This open-source GitHub build uses the cutout cat image from the original viral photo. Please verify image rights before commercial redistribution.
Download the latest unpacked-extension zip:
- Download
sliding-cat-cursor-v1.1.4.zip. - Unzip it.
- Open Chrome or Edge.
- Go to
chrome://extensionsoredge://extensions. - Turn on
Developer mode. - Click
Load unpacked. - Select the unzipped extension folder.
The cat will appear on normal webpages when your cursor moves downward.
This repository is the Chrome extension version of Sliding Cat Cursor. The
browser extension source is in extension/.
Project layout:
extension/manifest.json: Chrome Manifest V3 configextension/content.js: cursor movement detection and cat overlayextension/popup.html,popup.css,popup.js: popup settings UIextension/assets/sliding-cat.png: cutout cat image assetextension/icons/: extension iconsdist/: packaged zip builds for manual installdocs/assets/: screenshots and listing assets
- Open Chrome or Edge.
- Go to
chrome://extensionsoredge://extensions. - Turn on
Developer mode. - Click
Load unpacked. - Select the
extension/folder from this repo. - After code changes, click the extension reload button and refresh the test page or webpage.
Zip the contents of extension/, not the folder itself. The zip must contain
manifest.json at the top level.
On macOS/Linux:
cd extension
zip -r ../dist/sliding-cat-cursor.zip .On Windows PowerShell:
Compress-Archive -Path extension\* -DestinationPath dist\sliding-cat-cursor.zip -ForceThe extension uses storage to save local settings. It uses a content script on
webpages so the visual cursor effect can appear automatically. The content
script listens only to pointer movement direction and does not inspect page
content.
- Appears only when the cursor moves downward
- Fades when the cursor moves upward
- Mirrors direction when moving down-left
- Adjustable cat size
- Adjustable sensitivity
- Simple on/off switch
- No tracking or analytics
This extension does not collect, sell, transmit, or share user data.
It stores only local settings such as:
- enabled or disabled state
- cat height
- downward sensitivity
The content script listens only to pointer movement direction so it can show or hide the local cat image. It does not inspect page text, forms, links, cookies, account information, browsing history, or page content.
MIT
