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
公式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
Eメール [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"
            }
        }
    }
}