Kindle Cloud Reader Translate

Translate directly from Kindle Cloud Reader

Τι είναι το Kindle Cloud Reader Translate;

Το Kindle Cloud Reader Translate είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://kcr.vercel.app, και η κύρια λειτουργία του είναι "Translate directly from Kindle Cloud Reader".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Kindle Cloud Reader Translate

Λήψη αρχείων επέκτασης Kindle Cloud Reader Translate σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        ★★★★★
Select any text in Kindle Cloud Reader and a pop-up window with the translation will open.
When you want to take notes click on the "Disable Translation" button. If you enjoy this extension please give it a 5-star rating and share it with your friends and family.
★★★★★
Troubleshooting and support: 
Open an issue on GitHub https://github.com/motiko/kcr-translate-ext/issues
Or write an email to the author. 
Please don't use the chrome web store to report bugs.

★★★★★
The source code is available at https://github.com/motiko/kcr-translate-ext
The permission to read data on all pages is required for taking screenshots. This extension does not run outside of Kindle Cloud Reader. This extension does not read or store any personal data. If you have any questions please contact the developer.

★★★★★
Many thanks to:
Pavel Mazhnik https://github.com/p-mazhnik
For improving and helping maintain this extension.
And André Klein - https://learnoutlive.com/
For inspiring it in the first place.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Kindle Cloud Reader Translate Kindle Cloud Reader Translate
ID ipalacjfeejceeogpnfaijpadginmfhk
Επίσημο URL https://chromewebstore.google.com/detail/kindle-cloud-reader-trans/ipalacjfeejceeogpnfaijpadginmfhk
Περιγραφή Translate directly from Kindle Cloud Reader
Μέγεθος Αρχείου 1.7 MB
Αριθμός Εγκαταστάσεων 6,802
Τρέχουσα Έκδοση 0.3.5
Τελευταία Ενημέρωση 2023-06-23
Ημερομηνία Δημοσίευσης 2020-02-01
Αξιολόγηση 3.36/5 Συνολικά 56 Αξιολογήσεις
Προγραμματιστής https://kcr.vercel.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://kcr.vercel.app
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/motiko/kcr-translate-ext/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Kindle Cloud Reader Translate",
    "short_name": "KCR Translate",
    "author": "Moti Korets",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp7w6hKdg7o7PGZpkTZ1XkZ9mjGAUDXdO7BVou7skvC8t1+15QWdL8KSv5QPolYIItem5EkfEf7DkezdSR4GvGCW+TTJQ9jIjx2yPqei3\/\/c+\/yOfanFYey5L2C8l08W9Bfy+hxe3M8UoOGppn6\/NLMZ9iJ3E2g+fp90jtFNGetNbe9dWHwcWLLRrytgwfKRu00pkPWX\/klZXrj\/CbPzQHGe5cYOWZHeyeDSOxYcawoDKV8y4CEhjYPZC3Y76tKogMiCPwkACjpbRbqCN\/DPLR+UTUN4eIFqT2kSwcMOY9DIxFqwMi50nZ7PdW+4bG8V1UPfNwzYgTPcM4\/VrtooTQwIDAQAB",
    "icons": {
        "16": "img\/book_16.png",
        "128": "img\/book_128.png"
    },
    "permissions": [
        "storage",
        ""
    ],
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html"
    },
    "page_action": {
        "default_icon": "img\/book_16.png",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/translate.google.com\/*"
            ],
            "js": [
                "autoplay.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/lesen.amazon.de\/*",
                "https:\/\/leer.amazon.es\/*",
                "https:\/\/leer.amazon.com.mx\/*",
                "https:\/\/read.amazon.ca\/*",
                "https:\/\/read.amazon.com\/*",
                "https:\/\/read.amazon.co.jp\/*",
                "https:\/\/read.amazon.in\/*",
                "https:\/\/read.amazon.com.au\/*",
                "https:\/\/ler.amazon.com.br\/*",
                "https:\/\/lire.amazon.fr\/*",
                "https:\/\/leggi.amazon.it\/*",
                "https:\/\/read.amazon.co.uk\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "version": "0.3.5",
    "description": "Translate directly from Kindle Cloud Reader"
}