GPT Anywhere

Get GPT completions on any webpage.

Co to jest GPT Anywhere?

GPT Anywhere to rozszerzenie Chrome opracowane przez hotspringsclap, a jego główną funkcją jest „Get GPT completions on any webpage.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GPT Anywhere

Pobierz pliki rozszerzeń GPT Anywhere w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
Oficjalny URL https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
Opis Get GPT completions on any webpage.
Rozmiar pliku 159 KB
Liczba instalacji 404
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2023-04-25
Data Publikacji 2023-02-20
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper hotspringsclap
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CheeseDurger/gpt-anywhere
Adres URL Strony Pomocy https://github.com/CheeseDurger/gpt-anywhere/issues/new
Obsługiwane Języki 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"
            ]
        }
    ]
}