Fast Translator

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

什麼是Fast Translator?

Fast Translator是由Coderlife開發的Chrome擴展程式,該擴展的主要功能是“Fast-Translator is a Chrome extension that uses the OpenAI API and Google Translate API for translation.”。

擴展截圖

screenshot
screenshot

下載Fast Translator擴展crx文件

下載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
官方網址 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\/"
    ]
}