Auto Hide Cursor

Hides the cursor after a configurable amount of time

O que é Auto Hide Cursor?

Auto Hide Cursor é uma extensão do Chrome desenvolvida por Matthias Vogt, e sua principal característica é "Hides the cursor after a configurable amount of time".

Baixar o arquivo CRX da Extensão Auto Hide Cursor

Baixe arquivos de extensão Auto Hide Cursor 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

                        Automatically hides the Cursor on webpages after a configurable amount of seconds. Hides the cursor on all pages at the same time.

Also comes with a keyboard shortcut to hide the cursor: Ctrl+Shift+H/Cmd+Shift+H

idk why but the cursor annoys me when I'm reading a blogpost or something and pressing *any* button to hide it is just way too much of a hassle for me. See also https://xkcd.com/1319/, except replace "time" with "not fun".                    

Informações Básicas da Extensão

Nome Auto Hide Cursor Auto Hide Cursor
ID jbbnnopgaidlnbefoiebogfaebmehbda
URL Oficial https://chromewebstore.google.com/detail/auto-hide-cursor/jbbnnopgaidlnbefoiebogfaebmehbda
Descrição Hides the cursor after a configurable amount of time
Tamanho do Arquivo 31.73 KB
Contagem de Instalações 1,589
Versão Atual 0.1.0
Última Atualização 2016-04-19
Data de Publicação 2016-04-18
Classificação 2.71/5 Total de 31 Avaliações
Desenvolvedor Matthias Vogt
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/matthias-vogt/auto-hide-cursor
URL da Página de Ajuda https://github.com/matthias-vogt/auto-hide-cursor/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Hide Cursor",
    "description": "Hides the cursor after a configurable amount of time",
    "version": "0.1.0",
    "author": "Matthias Vogt",
    "homepage_url": "https:\/\/github.com\/matthias-vogt\/auto-hide-cursor",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "hide-cursor-class.css"
            ],
            "js": [
                "tab.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_popup": "options.html",
        "default_title": "New Tab URL"
    },
    "commands": {
        "hide-cursor": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "Toggle external stylesheets"
        }
    },
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}