Hide Cursor

Hide the cursor when a shortcut key is pressed

什么是Hide Cursor?

Hide Cursor是由hidecursor开发的Chrome扩展程序,该扩展的主要功能是“Hide the cursor when a shortcut key is pressed”。

扩展截图

screenshot

下载Hide Cursor扩展crx文件

下载Hide Cursor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Hide Cursor Hide Cursor
ID kldbplphckmjnjljpfikobfpolmoidge
官方URL https://chromewebstore.google.com/detail/hide-cursor/kldbplphckmjnjljpfikobfpolmoidge
简介 Hide the cursor when a shortcut key is pressed
文件大小 168 KB
安装次数 51
当前版本 1.0.0
更新时间 2023-07-17
上架时间 2023-07-13
评分 5.00/5 共1次评分
开发者 hidecursor
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}