GPT API Companion

A Chrome extension for interacting with GPT API

GPT API Companionคืออะไร?

GPT API Companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://amin.codes และคุณลักษณะหลักของมันคือ "A Chrome extension for interacting with GPT API"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GPT API Companion

ดาวน์โหลดไฟล์ส่วนขยาย GPT API Companion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is an extension that you can use to summarise pages on the web using GPT API and further ask questions about the page. To use you need to generate your own Open AI API key (https://platform.openai.com/account/api-keys be aware that this does cost money to use).

The extension works together with the web page: https://chat.lit.codes to get the token (so you have to use the https://chat.lit.codes/options page to set the token for this extension to work. Also the (end-to-end encrypted) history of the page summaries end up in that web page.

Please note that neither this extension nor the web page store any personal information from your side. The token you set is only saved locally in Chrome, and the chat history (although saved on the backend side) is end-to-end encrypted using your API token, therefore it's impossible for us to restore the chat history for you if you lose your API key (so please make sure you've saved the API token in a safe place if you care about your chat history), read more in https://chat.lit.codes/privacy-and-security

See the source code here: https://github.com/aminmarashi/gpt-api-companion

Version 1.5.0:
  - Support for GPT3.5 16K token size for better contexts

Version 1.4.3:
  - Remove "summerizing" title from history

Version 1.4.2:
  - Fix the bug that caused the summariser to randomly stop

Version 1.4.0:
  - The options are separated into their own page, so the extension now needs to redirect to the options page to get the API token

Version 1.3.0:
  - End-to-end encryption of the history

Version 1.1.0:
  - Support for GPT-4
  - Spinner animation

Version 1.0.0:
  - A minimal chat with the GPT-3.5 model
  - Ability to summarise selected text or an entire page                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GPT API Companion GPT API Companion
ID bdaanmhmamgpeppfdajedeliilghopol
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gpt-api-companion/bdaanmhmamgpeppfdajedeliilghopol
คำอธิบาย A Chrome extension for interacting with GPT API
ขนาดไฟล์ 1.37 MB
จำนวนการติดตั้ง 220
เวอร์ชันปัจจุบัน 1.5.0
อัปเดตครั้งล่าสุด 2023-06-14
วันที่เผยแพร่ 2023-04-14
ผู้พัฒนา https://amin.codes
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/aminmarashi/gpt-api-companion
URL หน้าช่วยเหลือ https://github.com/aminmarashi/gpt-api-companion/issues
URL หน้านโยบายความเป็นส่วนตัว https://chat.lit.codes/privacy-and-security
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT API Companion",
    "version": "1.5.0",
    "description": "A Chrome extension for interacting with GPT API",
    "permissions": [
        "activeTab",
        "storage",
        "scripting",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/chat.lit.codes\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/api.openai.com.com\/*'; object-src 'self'"
    },
    "action": {
        "default_icon": {
            "16": "public\/robot-16.png",
            "48": "public\/robot-48.png",
            "128": "public\/robot-128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "js": [
                "dist\/contentScript.js"
            ],
            "module": true
        }
    ],
    "background": {
        "service_worker": "dist\/background.js"
    }
}