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"
            ]
        }
    ]
}