ChatGPT Shortcut

Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.

ChatGPT Shortcut là gì?

ChatGPT Shortcut là một tiện ích mở rộng Chrome được phát triển bởi Patrik Martinko, và tính năng chính của nó là "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".

Ả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 ChatGPT Shortcut

Tải xuống các tệp mở rộng ChatGPT Shortcut 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 is especially useful when you use launcher apps like Spotlight, Alfred, LaunchBar, Flow Launcher, Wox ...

Structure of query: https://chat.openai.com/chat?q={query}                    

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

Tên ChatGPT Shortcut ChatGPT Shortcut
ID mdbedmdmpgnfipljamcabejcnoilbfaf
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf
Mô tả Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Kích Thước Tệp 28.12 KB
Số Lần Cài Đặt 1,680
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-08-07
Ngày Phát Hành 2023-01-27
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Patrik Martinko
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/patrik-martinko/app-chatgpt-shortcut
URL Trang Trợ Giúp https://github.com/patrik-martinko/app-chatgpt-shortcut/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Shortcut",
    "description": "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.",
    "version": "1.0.4",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}