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.
按已采集快照查看用户数变化。
展示最近 7 日窗口内已采集的评分快照,辅助判断近期评分是否稳定。
同口径展示 1 天、7 天、30 天的绝对增长与增长率。
查看发布时间、版本、支持语言、最近更新和抓取时间。
查看插件说明、主要功能和适用场景。
*** 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.
查看最近评论和评分分布。
商店综合星级:4.5。下方星级分布只统计已同步评论正文;如果某个插件只有公开分数、没有真实评论正文,这里可能为空。
查看 Chrome 商店详情页中的相关产品。
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; };