Hide Cursor

Hide the cursor when a shortcut key is pressed

Hide Cursor là gì?

Hide Cursor là một tiện ích mở rộng Chrome được phát triển bởi hidecursor, và tính năng chính của nó là "Hide the cursor when a shortcut key is pressed".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hide Cursor

Tải xuống các tệp mở rộng Hide Cursor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hide Cursor Hide Cursor
ID kldbplphckmjnjljpfikobfpolmoidge
URL Chính Thức https://chromewebstore.google.com/detail/hide-cursor/kldbplphckmjnjljpfikobfpolmoidge
Mô tả Hide the cursor when a shortcut key is pressed
Kích Thước Tệp 168 KB
Số Lần Cài Đặt 51
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-07-17
Ngày Phát Hành 2023-07-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển hidecursor
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}