Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Mouse Pointer Highlighter क्या है?
Mouse Pointer Highlighter vonrehberg.developer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will highlight your mouse cursor and your mouse clicks."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mouse Pointer Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
आधिकारिक URL | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
विवरण | This extension will highlight your mouse cursor and your mouse clicks. |
फ़ाइल का आकार | 67.42 KB |
स्थापना संख्या | 3,485 |
वर्तमान संस्करण | 1.1.1 |
अंतिम अपडेट | 2021-12-06 |
प्रकाशन तिथि | 2019-10-01 |
रेटिंग | 2.21/5 कुल 24 रेटिंग्स |
डेवलपर | vonrehberg.developer |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/VonRehberg/McLick |
सहायता पृष्ठ URL | https://github.com/VonRehberg/McLick |
समर्थित भाषाएँ | 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 } |