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. 擴展基本資訊
| 名稱 | |
| ID | ljjafkobiacdlnpndeacabenohfnidhk |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
} | |