VIZ Hotkeys - For VIZ Manga & Shonen Jump
✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧
VIZ Hotkeys - For VIZ Manga & Shonen Jump란 무엇입니까?
VIZ Hotkeys - For VIZ Manga & Shonen Jump은(는) Adakenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧"입니다.
확장 프로그램 스크린샷
VIZ Hotkeys - For VIZ Manga & Shonen Jump 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Trying to read manga on the VIZ website, but annoyed by the lack of keyboard shortcuts? This extension adds some useful hotkeys to improve your reading experience, especially if you don't have arrow keys. You can also rebind these shortcuts now using the experimental options feature! Default Keys: • NEXT PAGE (A) / PREVIOUS PAGE (D) • NEXT CHAPTER (E) / PREVIOUS CHAPTER (Q) • SINGLE COLUMN MODE (S) • TOGGLE FULLSCREEN WITH IMMERSIVE MODE (F) • TOGGLE POP-OUT (P) • SCROLL WHEEL PAGE NAVIGATION (UP -> Next, DOWN -> Previous) Optional Features: • Automatically activate pop-out mode when you load a page (*) • Automatically activate single column mode when you load a page (*) • Automatically load the next chapter after you reach the final page (Shounen Jump only) (*) • Enable immersive mode when you hit the fullscreen key (*) • Reverse scroll wheel navigation direction (*) Enabled by default. You can turn these settings off in the options menu, which can be reached by clicking on the extension's icon in your browser. If that doesn't work, you can open it by right-clicking the extension’s icon in most Chromium-based browsers and hitting 'Options'. * * * Source code can be found here: https://github.com/Crayolable/VIZMangaShortcuts
확장 프로그램 기본 정보
이름 | |
ID | nklfemdfoghnfaeciipppcankdhmgkek |
공식 URL | https://chromewebstore.google.com/detail/viz-hotkeys-for-viz-manga/nklfemdfoghnfaeciipppcankdhmgkek |
설명 | ✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧ |
파일 크기 | 33.06 KB |
설치 횟수 | 830 |
현재 버전 | 0.1.5 |
최근 업데이트 | 2022-01-13 |
출시 날짜 | 2020-01-28 |
평점 | 4.44/5 총 9 개의 평점 |
개발자 | Adakenko |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Crayolable/VIZMangaShortcuts |
도움말 페이지 URL | https://github.com/Crayolable/VIZMangaShortcuts/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "VIZ Hotkeys - For VIZ Manga & Shonen Jump", "description": "\u2727 Keyboard Shortcuts \/ Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) \u2727", "version": "0.1.5", "manifest_version": 3, "options_page": "\/options\/options.html", "action": { "default_icon": "\/assets\/vizControlsLogo.png", "default_popup": "\/options\/options.html" }, "content_scripts": [ { "js": [ "main.js" ], "matches": [ "*:\/\/www.viz.com\/shonenjump\/*", "*:\/\/www.viz.com\/read\/manga\/*" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "\/scripts\/hotkey.js", "\/cfg\/defaults.json" ], "matches": [ "http:\/\/www.viz.com\/*", "https:\/\/www.viz.com\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "*:\/\/www.viz.com\/shonenjump\/*", "*:\/\/www.viz.com\/read\/manga\/*" ] } |