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?
Manga Reader Key Correction - это расширение Chrome, разработанное http://www.shemseddine.com, и его основная функция - "Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga.".
Снимки экрана расширения
Скачать файл CRX расширения Manga Reader Key Correction
Скачайте файлы расширений Manga Reader Key Correction в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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/
Основная информация о расширении
Название | |
ID | mifhckgfdpdofammaodohfphlnjopejl |
Официальный URL | https://chrome.google.com/webstore/detail/manga-reader-key-correcti/mifhckgfdpdofammaodohfphlnjopejl |
Описание | Swaps left and right arrow key functions on popular manga websites to better match the "right to left" format of a printed manga. |
Размер файла | 59.26 KB |
Количество установок | 82 |
Текущая Версия | 1.0 |
Последнее Обновление | 2013-07-10 |
Дата публикации | 2013-07-10 |
Рейтинг | 4.00/5 Всего 3 оценок |
Разработчик | http://www.shemseddine.com |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |