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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}