AI Bar - Prompt ChatGPT from the URL bar
Type your prompt after "ai" in the Chrome URL bar and press return!
AI Bar - Prompt ChatGPT from the URL bar là gì?
AI Bar - Prompt ChatGPT from the URL bar là một tiện ích mở rộng Chrome được phát triển bởi mash, và tính năng chính của nó là "Type your prompt after "ai" in the Chrome URL bar and press return!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AI Bar - Prompt ChatGPT from the URL bar
Tải xuống các tệp mở rộng AI Bar - Prompt ChatGPT from the URL bar 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
AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AI Bar - Prompt ChatGPT from the URL bar |
ID | ljjafkobiacdlnpndeacabenohfnidhk |
URL Chính Thức | https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk |
Mô tả | Type your prompt after "ai" in the Chrome URL bar and press return! |
Kích Thước Tệp | 33.28 KB |
Số Lần Cài Đặt | 46 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2023-07-02 |
Ngày Phát Hành | 2023-04-03 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | mash |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AI Bar - Prompt ChatGPT from the URL bar", "description": "Type your prompt after \"ai\" in the Chrome URL bar and press return!", "version": "1.3", "omnibox": { "keyword": "ai" }, "background": { "service_worker": "src\/service-worker.js", "type": "module" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon_16.png", "32": "assets\/icon_32.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "src\/debug.content.js", "src\/content.chatgpt.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "src\/page.chatgpt.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ], "action": { "default_title": "Customize which AI to prompt", "default_popup": "src\/popup.html" } } |