ChatGPT search engine
A very simple extension to allow you to set ChatGPT as your Chrome's default search engine.
Cos'è ChatGPT search engine?
ChatGPT search engine è un'estensione di Chrome sviluppata da yangguang, e la sua funzione principale è "A very simple extension to allow you to set ChatGPT as your Chrome's default search engine.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT search engine
Scarica i file di estensione ChatGPT search engine in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Make ChatGPT a search engine in your browser. Type "gpt" and Tab on the address bar, and start your question.
Informazioni di Base sull'Estensione
Nome | ChatGPT search engine |
ID | copaigionceiijiolkfnbgpcnkeclhhd |
URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-search-engine/copaigionceiijiolkfnbgpcnkeclhhd |
Descrizione | A very simple extension to allow you to set ChatGPT as your Chrome's default search engine. |
Dimensione del File | 14.72 KB |
Conteggio Installazioni | 105 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2023-03-29 |
Data di Pubblicazione | 2023-03-28 |
Valutazione | 1.00/5 Totale 2 Valutazioni |
Sviluppatore | yangguang |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://chatgpt-search-engine.vercel.app/ |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT search engine", "description": "A very simple extension to allow you to set ChatGPT as your Chrome's default search engine.", "author": "[email protected]", "version": "0.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "omnibox": { "keyword": "gpt" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/chat", "https:\/\/chatgpt-search-engine.vercel.app\/*" ], "js": [ "content-script.js" ], "runAi": "document_idle" } ] } |