Ask from ChatGPT™

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

Ask from ChatGPT™ là gì?

Ask from ChatGPT™ là một tiện ích mở rộng Chrome được phát triển bởi lunu.bounir, và tính năng chính của nó là "Select a text and send it to ChatGPT to translate or explain more!".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ask from ChatGPT™

Tải xuống các tệp mở rộng Ask from ChatGPT™ 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

                        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.                    

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

Tên Ask from ChatGPT™ Ask from ChatGPT™
ID gaohihkdpnadnljkihehfmkjgaojpfcb
URL Chính Thức https://chromewebstore.google.com/detail/ask-from-chatgpt/gaohihkdpnadnljkihehfmkjgaojpfcb
Mô tả Select a text and send it to ChatGPT to translate or explain more!
Kích Thước Tệp 112 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2023-04-19
Ngày Phát Hành 2023-02-15
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển lunu.bounir
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://webextension.org/listing/ask-from-chatgpt.html
URL Trang Trợ Giúp https://webextension.org/listing/ask-from-chatgpt.html
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/lunu.bounir.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}