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文件
下載VIZ Hotkeys - For VIZ Manga & Shonen Jump擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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\/*" ] } |