Ask from ChatGPT™

Select a text and send it to ChatGPT to translate or explain more!

什么是Ask from ChatGPT™?

Ask from ChatGPT™是由lunu.bounir开发的Chrome扩展程序,该扩展的主要功能是“Select a text and send it to ChatGPT to translate or explain more!”。

扩展截图

screenshot

下载Ask from ChatGPT™扩展crx文件

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

扩展使用说明

                        This extension sends the selected text to ChatGPT with a prefixed message of your preference.

You can use it to translate a text, explain the meaning of the selected text or even reword it.

Operation Mode:
1. Window Mode: The new instance of ChatGPT is opened in a popup window
2. Tab Mode: The new instance of ChatGPT is opened next to the current tab

Use the right-click context menu over the action button to change the mode.

Hints:
1. You can press the action button to open ChatGPT next to the current tab.

--Legal
This extension only opens the official ChatGPT and sends the selected text to it to increase your productivity. It has nothing to do with the ChatGPT team.                    

扩展基本信息

名称 Ask from ChatGPT™ Ask from ChatGPT™
ID gaohihkdpnadnljkihehfmkjgaojpfcb
官方URL https://chromewebstore.google.com/detail/ask-from-chatgpt/gaohihkdpnadnljkihehfmkjgaojpfcb
简介 Select a text and send it to ChatGPT to translate or explain more!
文件大小 112 KB
安装次数 80
当前版本 0.1.4
更新时间 2023-04-19
上架时间 2023-02-15
评分 5.00/5 共2次评分
开发者 lunu.bounir
电子邮箱 [email protected]
付费类型 free
扩展官网 https://webextension.org/listing/ask-from-chatgpt.html
帮助页面URL https://webextension.org/listing/ask-from-chatgpt.html
隐私政策页面URL https://add0n.com/policies/lunu.bounir.txt
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Ask from ChatGPT\u2122",
    "description": "Select a text and send it to ChatGPT to translate or explain more!",
    "version": "0.1.4",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "contextMenus",
        "offscreen"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/ask-from-chatgpt.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_title": "Open ChatGPT next to the current tab"
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "commands": {
        "_execute_action": []
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "world": "MAIN",
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "data\/inject\/main.js"
            ]
        },
        {
            "run_at": "document_start",
            "world": "ISOLATED",
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "data\/inject\/isolated.js"
            ]
        }
    ],
    "options_ui": {
        "page": "data\/options\/index.html"
    }
}