Auto Hide Cursor

Hides the cursor after a configurable amount of time

Auto Hide Cursorとは何ですか?

Auto Hide CursorはMatthias Vogtによって開発されたChromeの拡張機能で、その主な機能は「Hides the cursor after a configurable amount of time」です。

Auto Hide Cursor拡張機能のCRXファイルをダウンロード

Auto Hide Cursor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Auto Hide Cursor Auto Hide Cursor
ID jbbnnopgaidlnbefoiebogfaebmehbda
公式URL https://chromewebstore.google.com/detail/auto-hide-cursor/jbbnnopgaidlnbefoiebogfaebmehbda
説明 Hides the cursor after a configurable amount of time
ファイルサイズ 31.73 KB
インストール数 1,589
現在のバージョン 0.1.0
最終更新日 2016-04-19
公開日 2016-04-18
評価 2.71/5 合計 31 レビュー
開発者 Matthias Vogt
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/matthias-vogt/auto-hide-cursor
ヘルプページのURL https://github.com/matthias-vogt/auto-hide-cursor/issues
対応言語 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
}