Mouse Pointer Double

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

¿Qué es Mouse Pointer Double?

Mouse Pointer Double es una extensión de Chrome desarrollada por Richard Fridrich, y su función principal es "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.".

Capturas de Pantalla de la Extensión

Descargar Archivo CRX de la Extensión Mouse Pointer Double

Descarga archivos de extensión Mouse Pointer Double en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Mouse Pointer Double Mouse Pointer Double
ID bfhfbhgccalkogdpcapeiicnjbdijcjk
URL Oficial https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk
Descripción Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
Tamaño del Archivo 12.18 KB
Cantidad de Instalaciones 3,435
Versión Actual 1.0.0
Última Actualización 2015-02-13
Fecha de Publicación 2015-02-13
Calificación 2.27/5 Total de 63 Calificaciones
Desarrollador Richard Fridrich
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
            }
        }
    }
}