Auto Hide Cursor

Hides the cursor after a configurable amount of time

Wat is Auto Hide Cursor?

Auto Hide Cursor is een Chrome-extensie ontwikkeld door Matthias Vogt, en de belangrijkste functie is "Hides the cursor after a configurable amount of time".

Download het CRX-bestand van de extensie Auto Hide Cursor

Download Auto Hide Cursor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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".                    

Basisinformatie over de Extensie

Naam Auto Hide Cursor Auto Hide Cursor
ID jbbnnopgaidlnbefoiebogfaebmehbda
Officiële URL https://chromewebstore.google.com/detail/auto-hide-cursor/jbbnnopgaidlnbefoiebogfaebmehbda
Beschrijving Hides the cursor after a configurable amount of time
Bestandsgrootte 31.73 KB
Aantal Installaties 1,589
Huidige Versie 0.1.0
Laatst Bijgewerkt 2016-04-19
Publicatiedatum 2016-04-18
Beoordeling 2.71/5 Totaal 31 Beoordelingen
Ontwikkelaar Matthias Vogt
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/matthias-vogt/auto-hide-cursor
Help Pagina-URL https://github.com/matthias-vogt/auto-hide-cursor/issues
Ondersteunde Talen 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
}