ChatGPT Extension
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
Hvad er ChatGPT Extension?
ChatGPT Extension er en Chrome-udvidelse udviklet af Oliver N., og dens hovedfunktion er "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".
Udvidelsesskærmbilleder
Download ChatGPT Extension-udvidelses-CRX-fil
Download ChatGPT Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.
Grundlæggende oplysninger om udvidelsen
Navn | ChatGPT Extension |
ID | ehigecokdaejpecogfefhmoemlapfjko |
Officiel URL | https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko |
Beskrivelse | This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. |
Filstørrelse | 281 KB |
Antal Installationer | 716 |
Nuværende Version | 0.1.0 |
Senest Opdateret | 2022-12-21 |
Udgivelsesdato | 2022-12-21 |
Bedømmelse | 1.00/5 Samlet 2 Bedømmelser |
Udvikler | Oliver N. |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/iOliverNguyen/chatgpt-box-extension |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": [], "background": { "service_worker": "background.js" }, "content_scripts": [ { "css": [ "content_script.css" ], "js": [ "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.", "host_permissions": [ "https:\/\/*\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon96.png", "128": "icon128.png", "512": "icon512.png" }, "manifest_version": 3, "name": "ChatGPT Extension", "version": "0.1.0", "web_accessible_resources": [ { "extension_ids": [], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "assets\/*" ] } ] } |