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.

O que é Manga Reader Key Correction?

Manga Reader Key Correction é uma extensão do Chrome desenvolvida por http://www.shemseddine.com, e sua principal característica é "Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Manga Reader Key Correction

Baixe arquivos de extensão Manga Reader Key Correction no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Manga Reader Key Correction Manga Reader Key Correction
ID mifhckgfdpdofammaodohfphlnjopejl
URL Oficial https://chrome.google.com/webstore/detail/manga-reader-key-correcti/mifhckgfdpdofammaodohfphlnjopejl
Descrição Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.
Tamanho do Arquivo 59.26 KB
Contagem de Instalações 82
Versão Atual 1.0
Última Atualização 2013-07-10
Data de Publicação 2013-07-10
Classificação 4.00/5 Total de 3 Avaliações
Desenvolvedor http://www.shemseddine.com
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}