Game Revenue Estimate
Add Steam revenue estimate to every Steam store page
Что такое Game Revenue Estimate?
Game Revenue Estimate - это расширение Chrome, разработанное Doolwind, и его основная функция - "Add Steam revenue estimate to every Steam store page".
Снимки экрана расширения
Скачать файл CRX расширения Game Revenue Estimate
Скачайте файлы расширений Game Revenue Estimate в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension shows the estimated total revenue generated by a game on steam based on its price and total reviews using a simple algorithm. The price is shown in brackets after the games title in the currency shown on the page. The estimate is a guide only and should not be used in any financial planning.
Основная информация о расширении
Название | Game Revenue Estimate |
ID | iefefhbijeoiookkedboieenbdejponf |
Официальный URL | https://chromewebstore.google.com/detail/game-revenue-estimate/iefefhbijeoiookkedboieenbdejponf |
Описание | Add Steam revenue estimate to every Steam store page |
Размер файла | 38.28 KB |
Количество установок | 41 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2022-02-16 |
Дата публикации | 2022-02-16 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Doolwind |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Game Revenue Estimate", "version": "0.1.0", "description": "Add Steam revenue estimate to every Steam store page", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/store.steampowered.com\/app\/*" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |