ChatGPT for address bar
Use ChatGPT from your address bar
什麼是ChatGPT for address bar?
ChatGPT for address bar是由Dreampunk開發的Chrome擴展程式,該擴展的主要功能是“Use ChatGPT from your address bar”。
擴展截圖
下載ChatGPT for address bar擴展crx文件
下載ChatGPT for address bar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Just type "chat" and your prompt to make your browsing experience faster and more efficient with ChatGPT. No API Key required. Try the most secure ChatGPT extension.
擴展基本資訊
名稱 | |
ID | kohabooomphnoedeinhfkdijpmbegmfi |
官方網址 | https://chrome.google.com/webstore/detail/chatgpt-for-address-bar/kohabooomphnoedeinhfkdijpmbegmfi |
簡介 | Use ChatGPT from your address bar |
檔案大小 | 8.59 KB |
安裝次數 | 133 |
目前版本 | 1.3.1 |
更新時間 | 2023-03-27 |
上架時間 | 2023-02-06 |
評分 | 3.50/5 共 6 次評分 |
開發者 | Dreampunk |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://dataplay.cl/timeless-youtube |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT for address bar", "version": "1.3.1", "description": "Use ChatGPT from your address bar", "permissions": [ "tabs", "activeTab" ], "icons": { "16": "16.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "event_page.js" }, "omnibox": { "keyword": "chat", "suggestion": { "imageUrl": "16.png" } } } |