ChatGPT Query Detector
A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box
什麼是ChatGPT Query Detector?
ChatGPT Query Detector是由codekansas開發的Chrome擴展程式,該擴展的主要功能是“A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box”。
擴展截圖
下載ChatGPT Query Detector擴展crx文件
下載ChatGPT Query Detector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple Chrome extension which loads a bit of Javascript to the ChatGPT website to detect if the "q" parameter was set, and if so, enters it into the chat bar.
擴展基本資訊
名稱 | ChatGPT Query Detector |
ID | fpmkloadngjobjlckhokcaklldkjbojh |
官方網址 | https://chromewebstore.google.com/detail/chatgpt-query-detector/fpmkloadngjobjlckhokcaklldkjbojh |
簡介 | A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box |
檔案大小 | 33.96 KB |
安裝次數 | 38 |
目前版本 | 1.2 |
更新時間 | 2023-05-03 |
上架時間 | 2023-02-15 |
評分 | 1.00/5 共 1 次評分 |
開發者 | codekansas |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/codekansas/chatgpt-chrome-extension |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Query Detector", "description": "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box", "version": "1.2", "icons": { "128": "128.png" }, "permissions": [], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html" } } |