Steam Review Summarizer

Summarizes Steam reviews with the power of OpenAI's GPT models.

Steam Review Summarizer란 무엇입니까?

Steam Review Summarizer은(는) phuturesign에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Summarizes Steam reviews with the power of OpenAI's GPT models."입니다.

확장 프로그램 스크린샷

screenshot

Steam Review Summarizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds a new section to the game page on Steam. It summarizes the reviews for that game using OpenAI's GPT models.

You need to provide your own a OpenAI API Key to use this extension! To do this you need to register an account on https://openai.com/. After that you can get your API Key here: https://platform.openai.com/account/api-keys

If you get any error code when entering your API Key please refer to the OpenAI API Documentation: https://platform.openai.com/docs/guides/error-codes/api-errors

If you get an error about exceeding your quota please make sure that you:
1. did not reach your billing limit: https://platform.openai.com/account/billing/limits
2. you have entered your payment credentials and created a new API key after that. There are problems with free accounts as you can read here: https://community.openai.com/t/opentai-api-request-error-you-exceeded-your-current-quota-please-check-your-plan-and-billing-details/82538/29

------------------------

Changelog:
v1.4 - Adds dynamic model loading. Choose any GPT model thats available to you by the OpenAI API.                    

확장 프로그램 기본 정보

이름 Steam Review Summarizer Steam Review Summarizer
ID gdnfnbnmocpjnfpjlkeefpelmkiomfio
공식 URL https://chromewebstore.google.com/detail/steam-review-summarizer/gdnfnbnmocpjnfpjlkeefpelmkiomfio
설명 Summarizes Steam reviews with the power of OpenAI's GPT models.
파일 크기 70.36 KB
설치 횟수 320
현재 버전 1.4
최근 업데이트 2023-11-09
출시 날짜 2023-05-30
평점 3.40/5 총 10 개의 평점
개발자 phuturesign
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Steam Review Summarizer",
    "description": "Summarizes Steam reviews with the power of OpenAI's GPT models.",
    "version": "1.4",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/store.steampowered.com\/*"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}