Security Alert: Malware Risk Confirmed
Minecraft Cursor for Chrome
ID: kkchefmfekacdingcjkgiaggdafolhen
Supported Languages
Extension Info & Metadata
Publisher Contextual Analysis
- Author
- https://tabplugins.com/View Profile
- Privacy
- Privacy Policy
- Country
- PK
- MX records exist
- Yes
- Domain exists
- Yes
- Is disposable
- No
- Is role-based
- No
- Mailbox exists
- Yes
- Address
- HOuse#46, Shalimar Colony, Near Metro Station Multan 60000 PK
- Website
- Visit
Bring the Minecraft world to your browser with the Minecraft cursor.
Google recommends using Chrome when using extensions and themes. Bring the Minecraft world to your browser with the Minecraft cursor. Transform your browsing experience with the iconic pixelated charm of the Minecraft universe! This Chrome extension replaces your standard cursor with blocky symbols from the legendary sandbox game that has revolutionized gaming worldwide. Features: โข Minecraft Cursors - Choose from designs featuring Diamond Pickaxes, Swords, Creeper faces, Steve, and more โข High-Quality Graphics - Crisp, detailed cursor designs that capture the distinct blocky aesthetic of the game โข Customizable Cursor Size - Adjust cursor dimensions to match your preferences โข Favorites System - Mark and quickly access your most-used Minecraft cursors โข Zero Performance Impact - Lightweight design ensures smooth browsing โข Easy Toggle On/Off - Quickly disable when needed How to Use: 1. Install the extension from the Chrome Web Store 2. Click the Minecraft Cursor icon in your browser toolbar 3. Browse through available Minecraft-themed cursor designs 4. Select your preferred cursor for normal browsing 5. Adjust cursor size using the size slider if needed 6. Enjoy your new Minecraft-themed browsing experience! Perfect for gamers, Minecraft enthusiasts, and anyone looking to add a touch of blocky adventure to their daily browsing. Download now and craft your way through the internet with every click! Bring Minecraft to your new tab! Enjoy HD animated live wallpapers with blocky adventures. Noob: Zombie Prison Escape Game - Navigate and Survive the Zombie Chaos! Help Noob escape a zombie prison in this thrilling, Minecraft-style action-platform game! Minecraft Nature: Serenity and Creativity in a Live Theme Immerse yourself in Minecraftโs serene nature landscapes with vivid visuals and easy shortcuts. Minecraft Classic , Unleash Your Imagination with Minecraft Classic Minecraft cursor for chrome. Choose your favorite custom Minecraft cursor with this extension. Created for Minecraft fans. Download unique skins for Minecraft quickly and easily with our extension, which offers a huge selection of high-quality skins Minecraft Wallpaper turn new tab to custom HD Cool background. Minecraft Wallpapers background theme created for fans. ๐ ๏ธ **Creative Mode**: Unlimited resources to bring your vision to life. 140+ Minecraft cursors! Includes mobs, tools, anime, and superheroesโfully customizable fun! Bring Minecraft to your new tab! Enjoy HD animated live wallpapers with blocky adventures. Noob: Zombie Prison Escape Game - Navigate and Survive the Zombie Chaos! Help Noob escape a zombie prison in this thrilling, Minecraft-style action-platform game! Minecraft Nature: Serenity and Creativity in a Live Theme Immerse yourself in Minecraftโs serene nature landscapes with vivid visuals and easy shortcuts. Minecraft Classic , Unleash Your Imagination with Minecraft Classic Minecraft cursor for chrome. Choose your favorite custom Minecraft cursor with this extension. Created for Minecraft fans. Download unique skins for Minecraft quickly and easily with our extension, which offers a huge selection of high-quality skins
On installation, the service worker queries every open browser tab matching `http://*/*` and `https://*/*` (all except the Chrome Web Store) and programmatically injects content.js into all of them via `chrome.scripting.executeScript`. While content.js itself only applies CSS cursor changes, this pattern โ injecting into every already-open tab at install time, beyond the declarative content_scripts scope โ is characteristic of aggressive PUP/adware extensions and gives the extension an execution foothold in every page the user had open at the moment of install.
chrome.runtime.onInstalled.addListener(function(c) { chrome.tabs.query({ url: ["https://*/*", "http://*/*"] }, (tabs) => { Array.from(tabs) .forEach((tab) => { if ( tab.url && // webstore urls can't be scripted tab.url.indexOf("https://chrome.google.com/webstore/") === -1 ) { chrome.scripting.executeScript({ target: { tabId: tab.id }, files: ["content.js"], // cursors are ready on each page }, () => { if (chrome.runtime.lastError) console.log(chrome.runtime.lastError.message); }, ); } });On first install the extension silently opens a new browser tab to the developer's marketing page (`https://tabplugins.com/minecraft-cursor/`) without any user interaction or consent. This is a classic adware/PUP behavior pattern used to drive traffic to monetized pages and is unrelated to the extension's stated cursor-changing functionality.
if ("install" === c.reason) { chrome.tabs.create({ url: "https://tabplugins.com/minecraft-cursor/", });At every service worker startup (not just on install), the extension automatically reloads any tab the user has open on `tabplugins.com`. The inline comment claims this is to 'make all buttons work', but a cursor extension has no legitimate reason to manipulate the user's already-open tabs on the developer's own domain. This could refresh affiliate tracking pixels, reinitialize monetization scripts, or invalidate cached responses to serve fresh ad content.
chrome.tabs.query({ url: ["https://tabplugins.com/*"]}, (tabs) => { // reload tabs to make all buttons work after extension is enabled Array.from(tabs) .forEach((tab) => { chrome.tabs.reload(tab.id); });});The extension registers an uninstall URL via `chrome.runtime.setUninstallURL`, which causes Chrome to open `https://tabplugins.com/cursors/` in a new tab whenever the user removes the extension. This is a tracking mechanism that signals to the developer's server when a specific user uninstalls, and is often combined with URL query parameters (potentially added server-side via redirect) to correlate uninstall events with user identity.
// Set URL to open when extension is uninstalledchrome.runtime.setUninstallURL("https://tabplugins.com/cursors/");By severity
Versions scanned
Showing 1 of 7 scanned versions with more than one unique finding. Counts are unique findings that include each version.
| Extension Version | Code Review Findings |
|---|---|
| 1.0.5 | 4 |
Files with findings
1 distinct path โ top paths by unique finding count:
- service_worker.js4
URLs
View the external URLs this extension communicates with to understand its network activity and data interactions.
Gain full insight into all external connections.
Upgrade for full visibility.
Gain full insight into all external connections.
Upgrade for full visibility.
Code Diff
Compare extension code between any two versions.
No comparable text files found between these versions.
Browse and explore files within this extension package
Gain full insight into all external connections.
Upgrade for full visibility.