AI Bar - Prompt ChatGPT from the URL bar
Type your prompt after "ai" in the Chrome URL bar and press return!
AI Bar - Prompt ChatGPT from the URL barとは何ですか?
AI Bar - Prompt ChatGPT from the URL barはmashによって開発されたChromeの拡張機能で、その主な機能は「Type your prompt after "ai" in the Chrome URL bar and press return!」です。
拡張機能のスクリーンショット
AI Bar - Prompt ChatGPT from the URL bar拡張機能のCRXファイルをダウンロード
AI Bar - Prompt ChatGPT from the URL bar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
AI Bar enables you to enter your prompt in the URL bar, hit return and jump to ChatGPT, saving a few clicks for you.
拡張機能の基本情報
名前 | AI Bar - Prompt ChatGPT from the URL bar |
ID | ljjafkobiacdlnpndeacabenohfnidhk |
公式URL | https://chromewebstore.google.com/detail/ai-bar-prompt-chatgpt-fro/ljjafkobiacdlnpndeacabenohfnidhk |
説明 | Type your prompt after "ai" in the Chrome URL bar and press return! |
ファイルサイズ | 33.28 KB |
インストール数 | 46 |
現在のバージョン | 1.3 |
最終更新日 | 2023-07-02 |
公開日 | 2023-04-03 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | mash |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |