Fast Translator

Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.

Fast Translatorคืออะไร?

Fast Translator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Coderlife และคุณลักษณะหลักของมันคือ "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation."

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

screenshot
screenshot

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

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

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

                        Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation, It also includes functions such as Analyze, polish, and summarize.                    

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

ชื่อ Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
คำอธิบาย Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
ขนาดไฟล์ 10.81 MB
จำนวนการติดตั้ง 36
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2023-06-04
วันที่เผยแพร่ 2023-04-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Coderlife
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Fast Translator",
    "description": "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.",
    "version": "1.2.1",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "js\/content_script\/index.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background\/index.js"
    },
    "permissions": [
        "storage",
        "contextMenus",
        "tabs",
        "activeTab"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ],
            "target": "window"
        }
    ],
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/*.openai.azure.com\/",
        "https:\/\/translation.googleapis.com\/",
        "https:\/\/athena.appwheel.com\/",
        "https:\/\/v2.lab.pixocial.com\/",
        "https:\/\/accounts.google.com\/"
    ]
}