Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Vad är Mouse Pointer Highlighter?
Mouse Pointer Highlighter är en Chrome-tillägg utvecklad av vonrehberg.developer, och dess huvudfunktion är "This extension will highlight your mouse cursor and your mouse clicks.".
Tilläggsskärmbilder
Ladda ner Mouse Pointer Highlighter-förlängningens CRX-fil
Ladda ner Mouse Pointer Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
Officiell webbadress | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
Beskrivning | This extension will highlight your mouse cursor and your mouse clicks. |
Filstorlek | 67.42 KB |
Antal Installationer | 3,485 |
Aktuell Version | 1.1.1 |
Senast Uppdaterad | 2021-12-06 |
Publiceringsdatum | 2019-10-01 |
Betyg | 2.21/5 Totalt 24 Betyg |
Utvecklare | vonrehberg.developer |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/VonRehberg/McLick |
Hjälpsida URL | https://github.com/VonRehberg/McLick |
Stödda Språk | 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 } |