ChatGPT Shortcut
Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.
Apa itu ChatGPT Shortcut?
ChatGPT Shortcut adalah ekstensi Chrome yang dikembangkan oleh Patrik Martinko, dan fitur utamanya adalah "Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChatGPT Shortcut
Unduh file ekstensi ChatGPT Shortcut dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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}
Informasi Dasar Ekstensi
Nama | ChatGPT Shortcut |
ID | mdbedmdmpgnfipljamcabejcnoilbfaf |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-shortcut/mdbedmdmpgnfipljamcabejcnoilbfaf |
Deskripsi | Adds the ability to query ChatGPT outside of the website automatically via links with the GET parameter named 'q'. |
Ukuran File | 28.12 KB |
Jumlah Instalasi | 1,680 |
Versi Saat Ini | 1.0.4 |
Terakhir Diperbarui | 2023-08-07 |
Tanggal Publikasi | 2023-01-27 |
Penilaian | 3.67/5 Total 3 Penilaian |
Pengembang | Patrik Martinko |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/patrik-martinko/app-chatgpt-shortcut |
URL Halaman Bantuan | https://github.com/patrik-martinko/app-chatgpt-shortcut/issues |
Bahasa yang Didukung | 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" } } |