Click-free Browsing
Enables browsing using only mouse movements
Click-free Browsing란 무엇입니까?
Click-free Browsing은(는) Mika Lehtola에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enables browsing using only mouse movements"입니다.
확장 프로그램 스크린샷
Click-free Browsing 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Click-free Browsing |
ID | ipfpfhnlkoddglhimhdbboidjcfjlkji |
공식 URL | https://chromewebstore.google.com/detail/click-free-browsing/ipfpfhnlkoddglhimhdbboidjcfjlkji |
설명 | Enables browsing using only mouse movements |
파일 크기 | 119 KB |
설치 횟수 | 2,169 |
현재 버전 | 2.5 |
최근 업데이트 | 2023-01-25 |
출시 날짜 | 2019-09-17 |
평점 | 3.39/5 총 36 개의 평점 |
개발자 | Mika Lehtola |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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": [ "*:\/\/*\/*" ] } ] } |