No pointer
This extension allows you to use your browser without a mouse.
No pointer란 무엇입니까?
No pointer은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows you to use your browser without a mouse."입니다.
확장 프로그램 스크린샷
No pointer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Mouseless browsing! Yes! Throw away your mouse. You don't need it to browse the internet anymore! Press ctrl+shift+a to show keyboard shortcuts to links. Press any of the keys on screen to go to that link. Press ctrl+shift+a again to show shortcuts to the next batch of links. Press ctrl+alt+a to show keyboard shortcuts to links. Opens in a new tab. Press ctrl+alt+a again to show shortcuts to the next batch of links. Press ctrl+shift+s to show keyboard shortcuts to inputs. Press any of the keys on screen to set focus to that input. Note: This is by no means a finished product. It is super experimental. While it probably won't break anything, i'm sure there's bugs in there and not all websites will be supported. Feel free to report any bugs to me. Github repo: https://github.com/c00/no-pointer
확장 프로그램 기본 정보
이름 | No pointer |
ID | hfphokgchjldfbhppbpechglfmonbdcm |
공식 URL | https://chromewebstore.google.com/detail/no-pointer/hfphokgchjldfbhppbpechglfmonbdcm |
설명 | This extension allows you to use your browser without a mouse. |
파일 크기 | 48.72 KB |
설치 횟수 | 68 |
현재 버전 | 0.1 |
최근 업데이트 | 2017-08-15 |
출시 날짜 | 2017-08-13 |
개발자 | Unknown |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "No pointer", "description": "This extension allows you to use your browser without a mouse.", "version": "0.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "content.css" ], "js": [ "jquery-3.2.1.min.js", "mousetrap.js", "content.js" ] } ] } |