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 Mouse Pointer Double
ID bfhfbhgccalkogdpcapeiicnjbdijcjk
官方網址 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"
            }
        }
    }
}