ChatGPT for address bar
Use ChatGPT from your address bar
Wat is ChatGPT for address bar?
ChatGPT for address bar is een Chrome-extensie ontwikkeld door Dreampunk, en de belangrijkste functie is "Use ChatGPT from your address bar".
Extensie Screenshots
Download het CRX-bestand van de extensie ChatGPT for address bar
Download ChatGPT for address bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | kohabooomphnoedeinhfkdijpmbegmfi |
Officiële URL | https://chrome.google.com/webstore/detail/chatgpt-for-address-bar/kohabooomphnoedeinhfkdijpmbegmfi |
Beschrijving | Use ChatGPT from your address bar |
Bestandsgrootte | 8.59 KB |
Aantal Installaties | 133 |
Huidige Versie | 1.3.1 |
Laatst Bijgewerkt | 2023-03-27 |
Publicatiedatum | 2023-02-06 |
Beoordeling | 3.50/5 Totaal 6 Beoordelingen |
Ontwikkelaar | Dreampunk |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://dataplay.cl/timeless-youtube |
Ondersteunde Talen | 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" } } } |