Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"manifest_version": 3,
"name": "Steam Revenue Analyzer",
"version": "1.0",
"description": "Estimate game revenue directly from Steam store pages.",
"host_permissions": [
"https:\/\/store.steampowered.com\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/store.steampowered.com\/app\/*"
],
"js": [
"content.js"
],
"run_at": "document_end"
}
],
"icons": {
"128": "128.png"
},
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}