Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Co je Mouse Pointer Highlighter?
Mouse Pointer Highlighter je rozšíření Chrome vyvinuté vonrehberg.developer, a jeho hlavní funkcí je „This extension will highlight your mouse cursor and your mouse clicks.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Mouse Pointer Highlighter
Stáhněte si soubory rozšíření Mouse Pointer Highlighter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
This is a very simple plugin that will highlight your cursor in chrome and indicates click actions. It should simplyfy screen sharing sessions and help your screen sharing participants comprehend your actions. https://github.com/VonRehberg/McLick
Základní Informace o Rozšíření
Název | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
Oficiální URL | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
Popis | This extension will highlight your mouse cursor and your mouse clicks. |
Velikost souboru | 67.42 KB |
Počet instalací | 3,485 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2021-12-06 |
Datum Vydání | 2019-10-01 |
Hodnocení | 2.21/5 Celkem 24 Hodnocení |
Vývojář | vonrehberg.developer |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/VonRehberg/McLick |
URL Stránky Nápovědy | https://github.com/VonRehberg/McLick |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mouse Pointer Highlighter", "description": "This extension will highlight your mouse cursor and your mouse clicks.", "version": "1.1.1", "permissions": [ "scripting", "activeTab", "storage" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "action": { "title": "Toggle Mouse Highlighter On\/Off", "default_icon": "on.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "onOffToggle.js" }, "manifest_version": 3, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "jquery\/jquery-3.1.0.min.js", "highlight.js" ], "all_frames": true } ], "offline_enabled": true } |