GPT Anywhere

Get GPT completions on any webpage.

什麼是GPT Anywhere?

GPT Anywhere是由hotspringsclap開發的Chrome擴展程式,該擴展的主要功能是“Get GPT completions on any webpage.”。

擴展截圖

screenshot
screenshot

下載GPT Anywhere擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}