Fast Translator

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

Fast Translator là gì?

Fast Translator là một tiện ích mở rộng Chrome được phát triển bởi Coderlife, và tính năng chính của nó là "Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fast Translator

Tải xuống các tệp mở rộng Fast Translator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fast Translator Fast Translator
ID bjheadhaeajgaajiifmmjcljcdiecpng
URL Chính Thức https://chromewebstore.google.com/detail/fast-translator/bjheadhaeajgaajiifmmjcljcdiecpng
Mô tả Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.
Kích Thước Tệp 10.81 MB
Số Lần Cài Đặt 36
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2023-06-04
Ngày Phát Hành 2023-04-18
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Coderlife
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://wenus.pixocial.com/h5/projects/5dfa0b7f333347b98384b97dd660ea77
Ngôn Ngữ Được Hỗ Trợ 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\/"
    ]
}