EmbedGPT - Embed ChatGPT content
Share with one click and easily paste externally.
Cos'è EmbedGPT - Embed ChatGPT content?
EmbedGPT - Embed ChatGPT content è un'estensione di Chrome sviluppata da https://embedgpt.vercel.app, e la sua funzione principale è "Share with one click and easily paste externally.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione EmbedGPT - Embed ChatGPT content
Scarica i file di estensione EmbedGPT - Embed ChatGPT content 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
Easily share ChatGPT content with one click. You can paste it to a forum as an iframe or share it to communities such as Twitter and Reddit.
Informazioni di Base sull'Estensione
Nome | EmbedGPT - Embed ChatGPT content |
ID | nbjoccgcnhjmhpholoagaodhgiehbloa |
URL Ufficiale | https://chromewebstore.google.com/detail/embedgpt-embed-chatgpt-co/nbjoccgcnhjmhpholoagaodhgiehbloa |
Descrizione | Share with one click and easily paste externally. |
Dimensione del File | 9.15 KB |
Conteggio Installazioni | 114 |
Versione Corrente | 1.2.2 |
Ultimo Aggiornamento | 2023-04-26 |
Data di Pubblicazione | 2023-03-02 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | https://embedgpt.vercel.app |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://embedgpt.vercel.app |
URL della Pagina di Aiuto | https://embedgpt.vercel.app |
Lingue Supportate | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "__MSG_description__", "version": "1.2.2", "manifest_version": 3, "name": "__MSG_name__", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "activeTab", "scripting" ], "action": { "default_icon": { "16": "16x16.png", "32": "32x32.png" }, "default_title": "Share Content" }, "icons": { "16": "16x16.png", "32": "32x32.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/c\/*" ], "js": [ "contentScript.bundle.js" ], "run_at": "document_end" } ], "default_locale": "ko" } |