Mouse Pointer Highlighter
This extension will highlight your mouse cursor and your mouse clicks.
Mouse Pointer Highlighter là gì?
Mouse Pointer Highlighter là một tiện ích mở rộng Chrome được phát triển bởi vonrehberg.developer, và tính năng chính của nó là "This extension will highlight your mouse cursor and your mouse clicks.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mouse Pointer Highlighter
Tải xuống các tệp mở rộng Mouse Pointer Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mouse Pointer Highlighter |
ID | fmpkohnnbginkhhdbgmhabieabmaljib |
URL Chính Thức | https://chromewebstore.google.com/detail/mouse-pointer-highlighter/fmpkohnnbginkhhdbgmhabieabmaljib |
Mô tả | This extension will highlight your mouse cursor and your mouse clicks. |
Kích Thước Tệp | 67.42 KB |
Số Lần Cài Đặt | 3,485 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2021-12-06 |
Ngày Phát Hành | 2019-10-01 |
Đánh Giá | 2.21/5 Tổng số 24 Đánh Giá |
Nhà Phát Triển | vonrehberg.developer |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/VonRehberg/McLick |
URL Trang Trợ Giúp | https://github.com/VonRehberg/McLick |
Ngôn Ngữ Được Hỗ Trợ | 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 } |