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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |