ChatGPT Plus
ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
Cos'è ChatGPT Plus?
ChatGPT Plus è un'estensione di Chrome sviluppata da zerodocom, e la sua funzione principale è "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Plus
Scarica i file di estensione ChatGPT Plus 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
A browser plugin that enhances the ability of ChatGPT.
The source code is available on GitHub: https://github.com/zerodocom/ChatGPT-Plus Informazioni di Base sull'Estensione
| Nome | |
| ID | pkdcpohhilpdgdooafpjnenmnhgbmdmh |
| URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh |
| Descrizione | ChatGPT Plus is a plugin designed to enhance the conversational experience with AI. |
| Dimensione del File | 352 KB |
| Conteggio Installazioni | 2,340 |
| Versione Corrente | 1.0.2 |
| Ultimo Aggiornamento | 2023-05-22 |
| Data di Pubblicazione | 2023-01-02 |
| Valutazione | 4.00/5 Totale 5 Valutazioni |
| Sviluppatore | zerodocom |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/zerodocom/ChatGPT-Plus |
| URL della Pagina di Aiuto | https://github.com/zerodocom/ChatGPT-Plus |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ChatGPT Plus",
"manifest_version": 3,
"description": "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.",
"version": "1.0.2",
"icons": {
"16": "img\/logo.png",
"32": "img\/logo.png",
"48": "img\/logo.png",
"128": "img\/logo.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "img\/logo.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"content.ts-loader.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"content.css"
]
}
],
"options_page": "options.html",
"permissions": [
"contextMenus",
"storage",
"webRequest"
],
"host_permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
],
"web_accessible_resources": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"resources": [
"content.css",
"options.css",
"vue-router.css"
],
"use_dynamic_url": false
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"resources": [
"assets\/defaults-e73e6c0c.js",
"assets\/apiServer-3ddd2659.js",
"assets\/content.ts-293e4619.js"
],
"use_dynamic_url": true
}
]
} | |