ReaderTools
Tools for an enhanced experience with the Kindle Cloud Reader, including clipboard and translate functionality.
Τι είναι το ReaderTools;
Το ReaderTools είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Prestix Studio, και η κύρια λειτουργία του είναι "Tools for an enhanced experience with the Kindle Cloud Reader, including clipboard and translate functionality.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ReaderTools
Λήψη αρχείων επέκτασης ReaderTools σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
For many years, the Kindle Optimizer Chrome extension was a convenient way to copy to the clipboard snippets of your Kindle books and make translations of selections using Google Translate. It was a decent free tool that added this crucial functionality to the Cloud Reader. But it has been recently bought out by a different company and the free extension no longer works. All of their efforts are on selling their "Pro" version. Fortunately, the tool was originally open source. We were able to take the open source (MIT Licensed) portion of the code and begin this new free Chrome Extension. It picks up right where the old working Kindle Optimizer left off. We plan to fix a number of the small bugs and add a few basic enhancements.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ReaderTools |
ID | ddplgjilhfboobldlegckoackmpgggbf |
Επίσημο URL | https://chromewebstore.google.com/detail/readertools/ddplgjilhfboobldlegckoackmpgggbf |
Περιγραφή | Tools for an enhanced experience with the Kindle Cloud Reader, including clipboard and translate functionality. |
Μέγεθος Αρχείου | 90.23 KB |
Αριθμός Εγκαταστάσεων | 1,046 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2019-08-16 |
Ημερομηνία Δημοσίευσης | 2019-08-15 |
Αξιολόγηση | 2.31/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | Prestix Studio |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "icons": { "128": "icon2_128_128.png" }, "name": "ReaderTools", "description": "Tools for an enhanced experience with the Kindle Cloud Reader, including clipboard and translate functionality.", "version": "0.1", "page_action": { "default_icon": "icon.png", "default_title": "ReaderTools", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/read.amazon.com\/*", "https:\/\/read.amazon.ca\/*", "https:\/\/read.amazon.co.uk\/*", "https:\/\/lesen.amazon.de\/*", "https:\/\/lire.amazon.fr\/*", "https:\/\/leggi.amazon.it\/*", "https:\/\/ler.amazon.com.br\/*", "https:\/\/read.amazon.com.au\/*", "https:\/\/read.amazon.co.jp\/*", "https:\/\/read.amazon.in\/*" ], "js": [ "csOptimizer.js", "jquery-1.10.2.js" ], "all_frames": true } ], "background": { "scripts": [ "eventPage.js" ], "persistent": true }, "web_accessible_resources": [ "script.js" ], "permissions": [ "tabs", "https:\/\/read.amazon.com\/*", "webRequest", "webRequestBlocking", "*:\/\/amazon.com\/*", "*:\/\/www.amazon.com\/*", "*:\/\/smile.amazon.com\/*", "*:\/\/amazon.co.uk\/*", "*:\/\/www.amazon.co.uk\/*", "*:\/\/smile.amazon.co.uk\/*", "*:\/\/amazon.de\/*", "*:\/\/www.amazon.de\/*", "*:\/\/smile.amazon.de\/*", "*:\/\/amazon.fr\/*", "*:\/\/www.amazon.fr\/*", "*:\/\/amazon.es\/*", "*:\/\/www.amazon.es\/*", "*:\/\/amazon.it\/*", "*:\/\/www.amazon.it\/*", "*:\/\/amazon.co.jp\/*", "*:\/\/www.amazon.co.jp\/*", "*:\/\/amazon.ca\/*", "*:\/\/www.amazon.ca\/*", "*:\/\/amazon.in\/*", "*:\/\/www.amazon.in\/*", "*:\/\/amazon.com.au\/*", "*:\/\/www.amazon.com.au\/*" ] } |