ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Τι είναι το ChatGPT Shortcut;
Το ChatGPT Shortcut είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Patrik Martinko, και η κύρια λειτουργία του είναι "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Shortcut
Λήψη αρχείων επέκτασης ChatGPT Shortcut σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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}
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Περιγραφή | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Μέγεθος Αρχείου | 28.12 KB |
Αριθμός Εγκαταστάσεων | 1,680 |
Τρέχουσα Έκδοση | 1.0.4 |
Τελευταία Ενημέρωση | 2023-08-07 |
Ημερομηνία Δημοσίευσης | 2023-01-27 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Patrik Martinko |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/patrik-martinko/app-chatgpt-shortcut |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Υποστηριζόμενες Γλώσσες | 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" } } |