Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Cos'è Mouse Pointer Highlighter?
Mouse Pointer Highlighter è un'estensione di Chrome sviluppata da vonrehberg.developer, e la sua funzione principale è "This extension will highlight your mouse cursor and your mouse clicks.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mouse Pointer Highlighter
Scarica i file di estensione Mouse Pointer Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
URL Ufficiale | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
Descrizione | This extension will highlight your mouse cursor and your mouse clicks. |
Dimensione del File | 67.42 KB |
Conteggio Installazioni | 3,485 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2021-12-06 |
Data di Pubblicazione | 2019-10-01 |
Valutazione | 2.21/5 Totale 24 Valutazioni |
Sviluppatore | vonrehberg.developer |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/VonRehberg/McLick |
URL della Pagina di Aiuto | https://github.com/VonRehberg/McLick |
Lingue Supportate | 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 } |