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