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 là gì?

VIZ Hotkeys - For VIZ Manga & Shonen Jump là một tiện ích mở rộng Chrome được phát triển bởi Adakenko, và tính năng chính của nó là "✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧".

Ả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 VIZ Hotkeys - For VIZ Manga & Shonen Jump

Tải xuống các tệp mở rộng VIZ Hotkeys - For VIZ Manga & Shonen Jump 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

                        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                    

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

Tên VIZ Hotkeys - For VIZ Manga & Shonen Jump VIZ Hotkeys - For VIZ Manga & Shonen Jump
ID nklfemdfoghnfaeciipppcankdhmgkek
URL Chính Thức https://chromewebstore.google.com/detail/viz-hotkeys-for-viz-manga/nklfemdfoghnfaeciipppcankdhmgkek
Mô tả ✧ Keyboard Shortcuts / Hotkeys for VIZ.com's Manga Reader (Regular & Shounen Jump) ✧
Kích Thước Tệp 33.06 KB
Số Lần Cài Đặt 830
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2022-01-13
Ngày Phát Hành 2020-01-28
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Adakenko
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Crayolable/VIZMangaShortcuts
URL Trang Trợ Giúp https://github.com/Crayolable/VIZMangaShortcuts/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}