Kindle Cloud Reader Translate

Translate directly from Kindle Cloud Reader

Kindle Cloud Reader Translate क्या है?

Kindle Cloud Reader Translate https://kcr.vercel.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translate directly from Kindle Cloud Reader"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Kindle Cloud Reader Translate एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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