Happy dog - virtual pet for you and friends
An AI companion you can chat with, care for, and co-parent with your friends
Adds a laser pointer to any browser tab, making it easier for your audience to follow along during video calls.
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
Review the store description, core capabilities, and common use cases.
*** NOW WITH GESTURE DETECTION AND AUTOMATIC HIGHLIGHTING!!! ***
Have you ever found yourself lost in a sea of mouse movements during a virtual presentation, desperately trying to keep up with where the presenter is pointing?
"AnyTab Laser Pointer" adds a laser trail to your mouse pointer (similar to the one on Google Slides) on ANY Chrome tab.
And YES... that includes spreadsheets!!!
Think of it as your on-screen spotlight, leaving a vivid trail in its wake, turning your mouse into a laser pointer that can cut through the most cluttered of spreadsheets, the busiest of designs, or the densest of texts.
No more digital hide and seek with the cursor, just a simple, clear path to follow.
Inspect the latest comments and rating distribution.
Store average score: 4.5. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.
Review related products from the Chrome Web Store detail page.
An AI companion you can chat with, care for, and co-parent with your friends
Add a visual indicator to your mouse cursor for better visibility
Outline every element on your website with the help of Laser Eyes
Shoot laser at things you want to remove from the internet
A Chrome extension that adds a trail of randomly colored stars that quickly fall and fade away
Adding funny effects whenever you move your mouse. This extension make your mouse moving create fun effects.
It's good...
anda bastante bien aunque insiste demasiado en que la califiques. Igual muy buena e intuitiva
Muito bom.
4 star cuz it actually good
So close to exactly what I needed. I had tried several 'draw on page' extensions first which weren't right. One improvements would make it 5 stars: configurable shortcut to enable/disable the pointer Otherwise big thank you to the team.
hello everyone, good extension for reading articles and studying in browser, no alternatives exist so far so this is the best there is, but they can improve it, for example the circle drawing doesn't really work and has bugs. it can be modified and still has work to be the greatest there is.
Works on most programs. Getting it to draw or color is proving difficult.
The extension forces me to answer "how much to irecommend it" in the first 10 minutes of using it.. I hadn't even used it.. I couldn't skip the question.. I had to answer.. you are messing up your data collection right there my dudes
AnyTab Laser Pointer is a must-have Chrome extension for virtual presentations and video calls. It adds a laser pointer trail to your mouse pointer on any browser tab, including spreadsheets. This extension has significantly enhanced the clarity and professionalism of my presentations, making it easier for my audience to follow along. Highly recommended!
Exceptionally badly written code. First, there is a forgotten console log which pollutes the developer console with a message '' Secondly, which is even worse, zIndex values are hard-coded (1000000) which screws our code. There is a fixed element in the DOM which interferes with notifications and popups are hidden below that, since we calculate the zIndex, as it should be. Very bad programming practice. Please, fix your bad code! ========================================== Edit: Some of the code has been improved in the latest version 1.5. Alas, the main culprit - hard-coded z-index of 10000000 has not been removed. I will change my rating, but not to 5 stars. BTW, it is easy to calculate the z-index and set it dynamically, so it does not interfere with other apps. This is a function that we use: const zIndexMax = () => { let maxZIndex = 0; // Start with the lowest possible zIndex document.querySelectorAll('body *').forEach(el => { const zIndex = parseFloat(window.getComputedStyle(el).zIndex); if (!Number.isNaN(zIndex)) { maxZIndex = Math.max(maxZIndex, zIndex); } }); return maxZIndex; };