Manga Reader Key Correction

Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.

Manga Reader Key Correction là gì?

Manga Reader Key Correction là một tiện ích mở rộng Chrome được phát triển bởi http://www.shemseddine.com, và tính năng chính của nó là "Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Manga Reader Key Correction

Tải xuống các tệp mở rộng Manga Reader Key Correction 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

                        This extension swaps the left and right arrow key navigation function (i.e. left goes to the next page and right goes to the previous page) on popular manga reader websites, this is to better match the right to left reading order of conventional Japanese printed manga.
The extension currently works on the following sites:

http://www.mangasee.com/

http://www.mangareader.net/

http://www.mangahere.com/

http://www.tenmanga.com/

http://mangastream.com/

http://mangawall.com/

http://beta.mangafox.com/

http://unixmanga.com/

http://www.mangainn.com/

http://www.mangapark.com/

http://www.fakku.net/                    

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

Tên Manga Reader Key Correction Manga Reader Key Correction
ID mifhckgfdpdofammaodohfphlnjopejl
URL Chính Thức https://chrome.google.com/webstore/detail/manga-reader-key-correcti/mifhckgfdpdofammaodohfphlnjopejl
Mô tả Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.
Kích Thước Tệp 59.26 KB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-07-10
Ngày Phát Hành 2013-07-10
Đánh Giá 4.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://www.shemseddine.com
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Manga Reader Key Correction",
    "description": "Swaps left and right arrow key functions on popular manga websites to better match the \"right to left\" format of a printed manga.",
    "version": "1.0",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-1.10.2.min.js",
                "manga.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}