Anywhere GPT
The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.
Что такое Anywhere GPT?
Anywhere GPT - это расширение Chrome, разработанное besnard.nicolas, и его основная функция - "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.".
Снимки экрана расширения
Скачать файл CRX расширения Anywhere GPT
Скачайте файлы расширений Anywhere GPT в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Anywhere GTP allows you to save those prompt and quickly apply them anywhere you want Основная информация о расширении
| Название | |
| ID | gjlmelmekegnlljjhiidajoopdlnldhd |
| Официальный URL | 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"
}
} | |