Inspect and view changes in Better Steam source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "Better Steam",
"description": "Makes Steam better by removing the bloat, adding game insights, and surfacing the best deals for you to explore.",
"version": "1.0.0",
"icons": {
"16": "icon/16.png",
"24": "icon/24.png",
"48": "icon/48.png",
"96": "icon/96.png",
"128": "icon/128.png"
},
"host_permissions": [
"*://*.steambase.io/*",
"*://*.steampowered.com/*",
"*://steamcommunity.com/*"
],
"permissions": [
"storage"
],
"action": {
"default_title": "Better Steam by Steambase",
"default_popup": "popup.html"
},
"options_ui": {
"open_in_tab": true,
"page": "options.html"
},
"content_scripts": [
{
"matches": [
"*://steamcommunity.com/*",
"*://store.steampowered.com/*"
],
"js": [
"content-scripts/steam-global-bypass-age-check.js",
"content-scripts/steam-global-bypass-link-filter.js",
"content-scripts/steam-global-remove-header-install-button.js"
]
},
{
"matches": [
"*://store.steampowered.com/agecheck/app/*"
],
"js": [
"content-scripts/steam-store-app-agecheck-links.js"
]
},
{
"matches": [
"*://store.steampowered.com/app/*"
],
"css": [
"content-scripts/steam-store-app-player-stats.css"
],
"js": [
"content-scripts/steam-store-app-header-links.js",
"content-scripts/steam-store-app-linkbar-links.js",
"content-scripts/steam-store-app-player-score-label.js",
"content-scripts/steam-store-app-player-stats.js"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}