GPT Translate

Summarizes web page content in the language of your choice using GPT.

什么是GPT Translate?

GPT Translate是由projectwildflower23开发的Chrome扩展程序,该扩展的主要功能是“Summarizes web page content in the language of your choice using GPT.”。

扩展截图

screenshot
screenshot
screenshot

下载GPT Translate扩展crx文件

下载GPT Translate扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Quickly summarize highlighted text, or an entire page, using the power of GPT. Can summarize text from other languages into your language.                    

扩展基本信息

名称 GPT Translate GPT Translate
ID ljfjmbdgbebmjbfmdneeimenolagonol
官方URL https://chromewebstore.google.com/detail/gpt-translate/ljfjmbdgbebmjbfmdneeimenolagonol
简介 Summarizes web page content in the language of your choice using GPT.
文件大小 6.21 MB
安装次数 2,708
当前版本 1.2
更新时间 2023-04-04
上架时间 2023-03-22
评分 3.00/5 共4次评分
开发者 projectwildflower23
电子邮箱 [email protected]
付费类型 free
支持的语言 en,fr,es-419,hi,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPT Translate",
    "version": "1.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "main.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "description": "Summarizes web page content in the language of your choice using GPT.",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "default_locale": "en"
}