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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον codekansas, και η κύρια λειτουργία του είναι "A simple extension which detects query strings in the ChatGPT URL and automatically enters them into the search box".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Query Detector
Λήψη αρχείων επέκτασης 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 |
Επίσημο URL | 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" } } |