AI Bar - Prompt ChatGPT from the URL bar
Type your prompt after "ai" in the Chrome URL bar and press return!
¿Qué es AI Bar - Prompt ChatGPT from the URL bar?
AI Bar - Prompt ChatGPT from the URL bar es una extensión de Chrome desarrollada por mash, y su función principal es "Type your prompt after "ai" in the Chrome URL bar and press return!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AI Bar - Prompt ChatGPT from the URL bar
Descarga archivos de extensión AI Bar - Prompt ChatGPT from the URL bar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.
Información Básica de la Extensión
Nombre | AI Bar - Prompt ChatGPT from the URL bar |
ID | ljjafkobiacdlnpndeacabenohfnidhk |
URL Oficial | https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk |
Descripción | Type your prompt after "ai" in the Chrome URL bar and press return! |
Tamaño del Archivo | 33.28 KB |
Cantidad de Instalaciones | 46 |
Versión Actual | 1.3 |
Última Actualización | 2023-07-02 |
Fecha de Publicación | 2023-04-03 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | mash |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AI Bar - Prompt ChatGPT from the URL bar", "description": "Type your prompt after \"ai\" in the Chrome URL bar and press return!", "version": "1.3", "omnibox": { "keyword": "ai" }, "background": { "service_worker": "src\/service-worker.js", "type": "module" }, "permissions": [ "storage" ], "icons": { "16": "assets\/icon_16.png", "32": "assets\/icon_32.png", "48": "assets\/icon_48.png", "128": "assets\/icon_128.png" }, "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "src\/debug.content.js", "src\/content.chatgpt.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "src\/page.chatgpt.js" ], "matches": [ "https:\/\/chat.openai.com\/*" ] } ], "action": { "default_title": "Customize which AI to prompt", "default_popup": "src\/popup.html" } } |