GPT Anywhere

Get GPT completions on any webpage.

Что такое GPT Anywhere?

GPT Anywhere - это расширение Chrome, разработанное hotspringsclap, и его основная функция - "Get GPT completions on any webpage.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения GPT Anywhere

Скачайте файлы расширений GPT Anywhere в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Free OpenAI GPT tool to generate text and input it from any webpage :
1. Save your usual favorite prompts
2. Right-click anywhere on the web
3. Done, GPT is now writing what you want for you

This is ChatGPT at your fingertips.


100% open source. No data collected by the extension.                    

Основная информация о расширении

Название GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
Официальный URL https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
Описание Get GPT completions on any webpage.
Размер файла 159 KB
Количество установок 404
Текущая Версия 1.2.0
Последнее Обновление 2023-04-25
Дата публикации 2023-02-20
Рейтинг 5.00/5 Всего 5 оценок
Разработчик hotspringsclap
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/CheeseDurger/gpt-anywhere
URL страницы помощи https://github.com/CheeseDurger/gpt-anywhere/issues/new
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Anywhere",
    "description": "Get GPT completions on any webpage.",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/icon-16px.png",
        "32": "icons\/icon-32px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "action": {
        "default_title": "Go to this extension's Options to configure your GPT prompts"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/start.js"
            ]
        }
    ]
}