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.

Co to jest Manga Reader Key Correction?

Manga Reader Key Correction to rozszerzenie Chrome opracowane przez http://www.shemseddine.com, a jego główną funkcją jest „Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Manga Reader Key Correction

Pobierz pliki rozszerzeń Manga Reader Key Correction w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/                    

Podstawowe informacje o rozszerzeniu

Nazwa Manga Reader Key Correction Manga Reader Key Correction
ID mifhckgfdpdofammaodohfphlnjopejl
Oficjalny URL https://chrome.google.com/webstore/detail/manga-reader-key-correcti/mifhckgfdpdofammaodohfphlnjopejl
Opis Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.
Rozmiar pliku 59.26 KB
Liczba instalacji 82
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-07-10
Data Publikacji 2013-07-10
Ocena 4.00/5 Łącznie 3 Oceny
Deweloper http://www.shemseddine.com
Typ Płatności free
Obsługiwane Języki 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"
    }
}