Mouse Pointer Double
Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
Was ist Mouse Pointer Double?
Mouse Pointer Double ist eine Chrome-Erweiterung, die von Richard Fridrich entwickelt wurde, und ihr Hauptmerkmal ist "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.".
Erweiterungsscreenshots
Mouse Pointer Double-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mouse Pointer Double-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Mouse Pointer Double |
ID | bfhfbhgccalkogdpcapeiicnjbdijcjk |
Offizielle URL | https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk |
Beschreibung | Displays copy of the mouse pointer on the page. Intended for use with Chromecast. |
Dateigröße | 12.18 KB |
Installationsanzahl | 3,435 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2015-02-13 |
Veröffentlichungsdatum | 2015-02-13 |
Bewertung | 2.27/5 Insgesamt 63 Bewertungen |
Entwickler | Richard Fridrich |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } } } |