Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Wat is Mouse Pointer Highlighter?
Mouse Pointer Highlighter is een Chrome-extensie ontwikkeld door vonrehberg.developer, en de belangrijkste functie is "This extension will highlight your mouse cursor and your mouse clicks.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mouse Pointer Highlighter
Download Mouse Pointer Highlighter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | fmpkohnnbginkhhdbgmhabieabmaljib |
| Officiële URL | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
| Beschrijving | This extension will highlight your mouse cursor and your mouse clicks. |
| Bestandsgrootte | 67.42 KB |
| Aantal Installaties | 3,485 |
| Huidige Versie | 1.1.1 |
| Laatst Bijgewerkt | 2021-12-06 |
| Publicatiedatum | 2019-10-01 |
| Beoordeling | 2.21/5 Totaal 24 Beoordelingen |
| Ontwikkelaar | vonrehberg.developer |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/VonRehberg/McLick |
| Help Pagina-URL | https://github.com/VonRehberg/McLick |
| Ondersteunde Talen | 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
} | |