Auto Hide Cursor

Hides the cursor after a configurable amount of time

Auto Hide Cursor là gì?

Auto Hide Cursor là một tiện ích mở rộng Chrome được phát triển bởi Matthias Vogt, và tính năng chính của nó là "Hides the cursor after a configurable amount of time".

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

Tải xuống các tệp mở rộng Auto 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

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

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

Tên Auto Hide Cursor Auto Hide Cursor
ID jbbnnopgaidlnbefoiebogfaebmehbda
URL Chính Thức https://chromewebstore.google.com/detail/auto-hide-cursor/jbbnnopgaidlnbefoiebogfaebmehbda
Mô tả Hides the cursor after a configurable amount of time
Kích Thước Tệp 31.73 KB
Số Lần Cài Đặt 1,589
Phiên Bản Hiện Tại 0.1.0
Cập Nhật Lần Cuối 2016-04-19
Ngày Phát Hành 2016-04-18
Đánh Giá 2.71/5 Tổng số 31 Đánh Giá
Nhà Phát Triển Matthias Vogt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/matthias-vogt/auto-hide-cursor
URL Trang Trợ Giúp https://github.com/matthias-vogt/auto-hide-cursor/issues
Ngôn Ngữ Được Hỗ Trợ 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
}