Open Translator

Quick access to Google Translate

Open Translatorคืออะไร?

Open Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย artar9404 และคุณลักษณะหลักของมันคือ "Quick access to Google Translate"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Open Translator

ดาวน์โหลดไฟล์ส่วนขยาย Open Translator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Provides quick access to Google Translate, allowing you to immediately translate selected text from the current webpage to another language.

Features:
* Select to translate
* Reverse translation
* Smart language pair recognition
* Possibility to use as standalone window
* Open source https://github.com/tarcode-apps/open-translator                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Open Translator Open Translator
ID cgllihjilejnolgcflldbmjdkjgdgfaa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/open-translator/cgllihjilejnolgcflldbmjdkjgdgfaa
คำอธิบาย Quick access to Google Translate
ขนาดไฟล์ 237 KB
จำนวนการติดตั้ง 715
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-06-03
วันที่เผยแพร่ 2021-11-16
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา artar9404
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tarcode-apps/open-translator
ภาษาที่รองรับ en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "version": "1.4",
    "author": "Artem Tarasov",
    "description": "__MSG_appDescription__",
    "homepage_url": "https:\/\/github.com\/tarcode-apps\/open-translator",
    "default_locale": "en",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-hashes' 'sha256-2FkMoYIfUwhaMVsbQnfoAJc8+Qzt0TC1GWOTrODFyNE='; connect-src https:\/\/translate.googleapis.com"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "__MSG_appTitle__"
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "MacCtrl+Shift+Q"
            },
            "description": "__MSG_openShortcut__"
        },
        "translate_page": {
            "suggested_key": {
                "default": "Alt+Q",
                "mac": "Alt+Shift+Q"
            },
            "description": "__MSG_translatePage__"
        }
    }
}