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
Eメール [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"
    }
}