Hide Cursor

Hide the cursor when a shortcut key is pressed

What is Hide Cursor?

Hide Cursor is a Chrome extension developed by hidecursor, and its main feature is "Hide the cursor when a shortcut key is pressed".

Extension Screenshots

screenshot

Download Hide Cursor Extension CRX File

Download Hide Cursor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A Chrome and Firefox extension that hides the cursor. Licensed under GPLv3.

Have feedback? Email [email protected], or leave a github issue at https://github.com/alex391/hide-cursor                    

Extension Basic Information

Name Hide Cursor Hide Cursor
ID kldbplphckmjnjljpfikobfpolmoidge
Official URL https://chromewebstore.google.com/detail/hide-cursor/kldbplphckmjnjljpfikobfpolmoidge
Description Hide the cursor when a shortcut key is pressed
File Size 168 KB
Installation Count 51
Current Version 1.0.0
Last Updated 2023-07-17
Publish Date 2023-07-13
Rating 5.00/5 Total 1 Ratings
Developer hidecursor
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Cursor",
    "description": "Hide the cursor when a shortcut key is pressed",
    "version": "1.0.0",
    "manifest_version": 3,
    "minimum_chrome_version": "92",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/cursor16.png",
            "32": "\/images\/cursor32.png",
            "48": "\/images\/cursor48.png",
            "128": "\/images\/cursor128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "hidecursor.css"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "toggle-hidden": {
            "suggested_key": "Ctrl+Shift+H",
            "description": "Toggle weather the cursor is shown"
        }
    },
    "icons": {
        "16": "\/images\/cursor16.png",
        "32": "\/images\/cursor32.png",
        "48": "\/images\/cursor48.png",
        "128": "\/images\/cursor128.png"
    }
}