Game Revenue Estimate
Add Steam revenue estimate to every Steam store page
Vad är Game Revenue Estimate?
Game Revenue Estimate är en Chrome-tillägg utvecklad av Doolwind, och dess huvudfunktion är "Add Steam revenue estimate to every Steam store page".
Tilläggsskärmbilder
Ladda ner Game Revenue Estimate-förlängningens CRX-fil
Ladda ner Game Revenue Estimate-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | iefefhbijeoiookkedboieenbdejponf |
| Officiell webbadress | https://chromewebstore.google.com/detail/game-revenue-estimate/iefefhbijeoiookkedboieenbdejponf |
| Beskrivning | Add Steam revenue estimate to every Steam store page |
| Filstorlek | 38.28 KB |
| Antal Installationer | 41 |
| Aktuell Version | 0.1.0 |
| Senast Uppdaterad | 2022-02-16 |
| Publiceringsdatum | 2022-02-16 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | Doolwind |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
} | |