Kindle Cloud Reader Translate

Translate directly from Kindle Cloud Reader

O que é Kindle Cloud Reader Translate?

Kindle Cloud Reader Translate é uma extensão do Chrome desenvolvida por https://kcr.vercel.app, e sua principal característica é "Translate directly from Kindle Cloud Reader".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Kindle Cloud Reader Translate

Baixe arquivos de extensão Kindle Cloud Reader Translate no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Kindle Cloud Reader Translate Kindle Cloud Reader Translate
ID ipalacjfeejceeogpnfaijpadginmfhk
URL Oficial https://chromewebstore.google.com/detail/kindle-cloud-reader-trans/ipalacjfeejceeogpnfaijpadginmfhk
Descrição Translate directly from Kindle Cloud Reader
Tamanho do Arquivo 1.7 MB
Contagem de Instalações 6,802
Versão Atual 0.3.5
Última Atualização 2023-06-23
Data de Publicação 2020-02-01
Classificação 3.36/5 Total de 56 Avaliações
Desenvolvedor https://kcr.vercel.app
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://kcr.vercel.app
URL da Página de Ajuda https://github.com/motiko/kcr-translate-ext/issues
Idiomas Suportados 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"
}