Mouse Pointer Double

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

Qu'est-ce que Mouse Pointer Double ?

Mouse Pointer Double est une extension Chrome développée par Richard Fridrich, et sa fonction principale est "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Mouse Pointer Double

Téléchargez les fichiers d'extension Mouse Pointer Double au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Mouse Pointer Double Mouse Pointer Double
ID bfhfbhgccalkogdpcapeiicnjbdijcjk
URL Officiel https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk
Description Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
Taille du Fichier 12.18 KB
Nombre d'Installations 3,435
Version Actuelle 1.0.0
Dernière Mise à Jour 2015-02-13
Date de Publication 2015-02-13
Évaluation 2.27/5 Total 63 Évaluations
Développeur Richard Fridrich
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            }
        }
    }
}