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" } } |