ChatGPT for address bar
Use ChatGPT from your address bar
What is ChatGPT for address bar?
ChatGPT for address bar is a Chrome extension developed by Dreampunk, and its main feature is "Use ChatGPT from your address bar".
Extension Screenshots
Download ChatGPT for address bar Extension CRX File
Download ChatGPT for address bar 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
Just type "chat" and your prompt to make your browsing experience faster and more efficient with ChatGPT. No API Key required. Try the most secure ChatGPT extension.
Extension Basic Information
Name | |
ID | kohabooomphnoedeinhfkdijpmbegmfi |
Official URL | https://chrome.google.com/webstore/detail/chatgpt-for-address-bar/kohabooomphnoedeinhfkdijpmbegmfi |
Description | Use ChatGPT from your address bar |
File Size | 8.59 KB |
Installation Count | 133 |
Current Version | 1.3.1 |
Last Updated | 2023-03-27 |
Publish Date | 2023-02-06 |
Rating | 3.50/5 Total 6 Ratings |
Developer | Dreampunk |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://dataplay.cl/timeless-youtube |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT for address bar", "version": "1.3.1", "description": "Use ChatGPT from your address bar", "permissions": [ "tabs", "activeTab" ], "icons": { "16": "16.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "event_page.js" }, "omnibox": { "keyword": "chat", "suggestion": { "imageUrl": "16.png" } } } |