Anywhere GPT
The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.
什麼是Anywhere GPT?
Anywhere GPT是由besnard.nicolas開發的Chrome擴展程式,該擴展的主要功能是“The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.”。
擴展截圖
下載Anywhere GPT擴展crx文件
下載Anywhere GPT擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Anywhere GTP allows you to save those prompt and quickly apply them anywhere you want 擴展基本資訊
| 名稱 | |
| ID | gjlmelmekegnlljjhiidajoopdlnldhd |
| 官方網址 | https://chromewebstore.google.com/detail/anywhere-gpt/gjlmelmekegnlljjhiidajoopdlnldhd |
| 簡介 | The secret of good ChatGPT answer is a good prompt and good prompts tend to be long. |
| 檔案大小 | 158 KB |
| 安裝次數 | 37 |
| 目前版本 | 1.2 |
| 更新時間 | 2023-02-23 |
| 上架時間 | 2023-02-22 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | besnard.nicolas |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Anywhere GPT",
"description": "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.",
"version": "1.2",
"manifest_version": 3,
"action": {
"default_title": "Configure AnywhereGPT"
},
"content_scripts": [
{
"matches": [
"*:\/\/chat.openai.com\/chat*"
],
"run_at": "document_end",
"js": [
".\/inject-prompt.js"
]
}
],
"permissions": [
"storage",
"contextMenus"
],
"background": {
"service_worker": "background.global.js"
},
"icons": {
"16": "chatgpt.png",
"48": "chatgpt.png",
"128": "chatgpt.png"
},
"options_ui": {
"page": "settings\/index.html"
}
} | |