ChatGPT Plus
ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
Apa itu ChatGPT Plus?
ChatGPT Plus adalah ekstensi Chrome yang dikembangkan oleh zerodocom, dan fitur utamanya adalah "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi ChatGPT Plus
Unduh file ekstensi ChatGPT Plus 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
A browser plugin that enhances the ability of ChatGPT. The source code is available on GitHub: https://github.com/zerodocom/ChatGPT-Plus
Informasi Dasar Ekstensi
Nama | ChatGPT Plus |
ID | pkdcpohhilpdgdooafpjnenmnhgbmdmh |
URL Resmi | https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh |
Deskripsi | ChatGPT Plus is a plugin designed to enhance the conversational experience with AI. |
Ukuran File | 352 KB |
Jumlah Instalasi | 2,340 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2023-05-22 |
Tanggal Publikasi | 2023-01-02 |
Penilaian | 4.00/5 Total 5 Penilaian |
Pengembang | zerodocom |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/zerodocom/ChatGPT-Plus |
URL Halaman Bantuan | https://github.com/zerodocom/ChatGPT-Plus |
Bahasa yang Didukung | 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 } ] } |