Mouse Pointer Double
Displays copy of the mouse pointer on the page. Intended for use with Chromecast.
O que é Mouse Pointer Double?
Mouse Pointer Double é uma extensão do Chrome desenvolvida por Richard Fridrich, e sua principal característica é "Displays copy of the mouse pointer on the page. Intended for use with Chromecast.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mouse Pointer Double
Baixe arquivos de extensão Mouse Pointer Double no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Mouse Pointer Double |
ID | bfhfbhgccalkogdpcapeiicnjbdijcjk |
URL Oficial | https://chromewebstore.google.com/detail/mouse-pointer-double/bfhfbhgccalkogdpcapeiicnjbdijcjk |
Descrição | Displays copy of the mouse pointer on the page. Intended for use with Chromecast. |
Tamanho do Arquivo | 12.18 KB |
Contagem de Instalações | 3,435 |
Versão Atual | 1.0.0 |
Última Atualização | 2015-02-13 |
Data de Publicação | 2015-02-13 |
Classificação | 2.27/5 Total de 63 Avaliações |
Desenvolvedor | Richard Fridrich |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } } |