ChatGPT Extension
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
What is ChatGPT Extension?
ChatGPT Extension is a Chrome extension developed by Oliver N., and its main feature is "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.".
Extension Screenshots
Download ChatGPT Extension Extension CRX File
Download ChatGPT Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | ChatGPT Extension |
ID | ehigecokdaejpecogfefhmoemlapfjko |
Official URL | https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko |
Description | This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. |
File Size | 281 KB |
Installation Count | 716 |
Current Version | 0.1.0 |
Last Updated | 2022-12-21 |
Publish Date | 2022-12-21 |
Rating | 1.00/5 Total 2 Ratings |
Developer | Oliver N. |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/iOliverNguyen/chatgpt-box-extension |
Supported Languages | 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\/*" ] } ] } |