Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Qu'est-ce que Mouse Pointer Highlighter ?
Mouse Pointer Highlighter est une extension Chrome développée par vonrehberg.developer, et sa fonction principale est "This extension will highlight your mouse cursor and your mouse clicks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mouse Pointer Highlighter
Téléchargez les fichiers d'extension Mouse Pointer Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
URL Officiel | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
Description | This extension will highlight your mouse cursor and your mouse clicks. |
Taille du Fichier | 67.42 KB |
Nombre d'Installations | 3,485 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2021-12-06 |
Date de Publication | 2019-10-01 |
Évaluation | 2.21/5 Total 24 Évaluations |
Développeur | vonrehberg.developer |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/VonRehberg/McLick |
URL de la Page d'Aide | https://github.com/VonRehberg/McLick |
Langues Prises en Charge | 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 } |