Steam Review Summarizer
Summarizes Steam reviews with the power of OpenAI's GPT models.
Steam Review Summarizer क्या है?
Steam Review Summarizer phuturesign द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Summarizes Steam reviews with the power of OpenAI's GPT models."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Steam Review Summarizer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } |