Kindle Cloud Reader Translate

Translate directly from Kindle Cloud Reader

Hvad er Kindle Cloud Reader Translate?

Kindle Cloud Reader Translate er en Chrome-udvidelse udviklet af https://kcr.vercel.app, og dens hovedfunktion er "Translate directly from Kindle Cloud Reader".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Kindle Cloud Reader Translate-udvidelses-CRX-fil

Download Kindle Cloud Reader Translate-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        ★★★★★
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.                    

Grundlæggende oplysninger om udvidelsen

Navn Kindle Cloud Reader Translate Kindle Cloud Reader Translate
ID ipalacjfeejceeogpnfaijpadginmfhk
Officiel URL https://chromewebstore.google.com/detail/kindle-cloud-reader-trans/ipalacjfeejceeogpnfaijpadginmfhk
Beskrivelse Translate directly from Kindle Cloud Reader
Filstørrelse 1.7 MB
Antal Installationer 6,802
Nuværende Version 0.3.5
Senest Opdateret 2023-06-23
Udgivelsesdato 2020-02-01
Bedømmelse 3.36/5 Samlet 56 Bedømmelser
Udvikler https://kcr.vercel.app
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://kcr.vercel.app
Hjælpeside-URL https://github.com/motiko/kcr-translate-ext/issues
Understøttede Sprog 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"
}