Mouse Pointer Double
Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
Co je Mouse Pointer Double?
Mouse Pointer Double je rozšíření Chrome vyvinuté Richard Fridrich, a jeho hlavní funkcí je „Displays copy of the mouse pointer on the page. Intended for use with Chromecast.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Mouse Pointer Double
Stáhněte si soubory rozšíření Mouse Pointer Double ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Mouse Pointer Double |
ID | bfhfbhgccalkogdpcapeiicnjbdijcjk |
Oficiální URL | https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk |
Popis | Displays copy of the mouse pointer on the page. Intended for use with Chromecast. |
Velikost souboru | 12.18 KB |
Počet instalací | 3,435 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2015-02-13 |
Datum Vydání | 2015-02-13 |
Hodnocení | 2.27/5 Celkem 63 Hodnocení |
Vývojář | Richard Fridrich |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" } } } } |