Mouse Pointer Double

Displays copy of the mouse pointer on the page. Intended for use with Chromecast.

Mouse Pointer Double là gì?

Mouse Pointer Double là một tiện ích mở rộng Chrome được phát triển bởi Richard Fridrich, và tính năng chính của nó là "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.".

Ả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 Double

Tải xuống các tệp mở rộng Mouse Pointer Double 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

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mouse Pointer Double Mouse Pointer Double
ID bfhfbhgccalkogdpcapeiicnjbdijcjk
URL Chính Thức https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk
Mô tả Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
Kích Thước Tệp 12.18 KB
Số Lần Cài Đặt 3,435
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2015-02-13
Ngày Phát Hành 2015-02-13
Đánh Giá 2.27/5 Tổng số 63 Đánh Giá
Nhà Phát Triển Richard Fridrich
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}