Click-free Browsing

Enables browsing using only mouse movements

Click-free Browsing là gì?

Click-free Browsing là một tiện ích mở rộng Chrome được phát triển bởi Mika Lehtola, và tính năng chính của nó là "Enables browsing using only mouse movements".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Click-free Browsing

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

                        Use mouse effortlessly: Follow links without clicking and scroll pages without using a wheel. Just place mouse over appearing link or scroll icon, and the thing happens. Browsing web does not have to be as physical an exercise as what you are used to.

Click-free Browsing adds fixed navigation icons to the right side of a page. By hovering mouse over an icon, you can easily scroll the page, or go backward or forward in page history. Following a link, in turn, equals to hovering mouse over an icon next to a link, and the link will be clicked for you. Switching between tabs can also happen click-free.


Privacy policy

Click-free Browsing analyzes address and structure of the website at hand, and user's mouse movements therein.

It checks out site address (URL) to determine whether to enable click-free functionality (depending on user settings).

It collects information about link locations and targets, window with and document height to target click-free icons correctly. 

User settings are saved in Chrome internal storage. All other information is consumed on the fly within the browser. It is not stored or transferred anywhere.                    

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

Tên Click-free Browsing Click-free Browsing
ID ipfpfhnlkoddglhimhdbboidjcfjlkji
URL Chính Thức https://chromewebstore.google.com/detail/click-free-browsing/ipfpfhnlkoddglhimhdbboidjcfjlkji
Mô tả Enables browsing using only mouse movements
Kích Thước Tệp 119 KB
Số Lần Cài Đặt 2,169
Phiên Bản Hiện Tại 2.5
Cập Nhật Lần Cuối 2023-01-25
Ngày Phát Hành 2019-09-17
Đánh Giá 3.39/5 Tổng số 36 Đánh Giá
Nhà Phát Triển Mika Lehtola
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": "Click-free Browsing",
    "description": "Enables browsing using only mouse movements",
    "version": "2.5",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "action": {
        "default_title": "Click-free Browsing",
        "default_icon": "\/icons\/cfb.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "click_free_browsing.js",
                "jquery-3.6.1.min.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/close_yellow.png",
                "\/close_red.png",
                "\/icons\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}