Mouse Pointer Double
Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
什么是Mouse Pointer Double?
Mouse Pointer Double是由Richard Fridrich开发的Chrome扩展程序,该扩展的主要功能是“Displays copy of the mouse pointer on the page. Intended for use with Chromecast.”。
扩展截图
下载Mouse Pointer Double扩展crx文件
下载Mouse Pointer Double扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allow you to add a fake mouse pointer to the active page. It follows the real mouse pointer. It is intended to use with Chromecast, so that you can see the mouse movement in the projected page. You can activate it either by clicking on the browser action icon, or you can use a keyboard shortcut (Alt+Shift+M by default, you can edit it at chrome://extensions/configureCommands). This extension was created as a quick excercise, inspired by Frank Katzenberger's post: https://plus.google.com/+FrankKatzenberger/posts/abUA9UJZB4x You can find the source-code at: https://github.com/fczbkk/Mouse-Pointer-Double
扩展基本信息
名称 | Mouse Pointer Double |
ID | bfhfbhgccalkogdpcapeiicnjbdijcjk |
官方URL | https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk |
简介 | Displays copy of the mouse pointer on the page. Intended for use with Chromecast. |
文件大小 | 12.18 KB |
安装次数 | 3,435 |
当前版本 | 1.0.0 |
更新时间 | 2015-02-13 |
上架时间 | 2015-02-13 |
评分 | 2.27/5 共63次评分 |
开发者 | Richard Fridrich |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mouse Pointer Double", "version": "1.0.0", "manifest_version": 2, "description": "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.", "icons": { "16": "images\/logo16.png", "48": "images\/logo48.png", "128": "images\/logo128.png" }, "permissions": [ "activeTab" ], "browser_action": { "default_title": "Show mouse pointer double", "default_icon": { "19": "images\/logo19.png", "38": "images\/logo38.png" } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/cursor.png" ], "commands": { "_execute_browser_action": { "description": "Activate mouse pointer double", "suggested_key": { "default": "Alt+Shift+M" } } } } |