Enhance your The Stadia experience
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "The Stadia Plus",
"version": "1.3.2",
"author": "inconsiderate",
"description": "Enhance your The Stadia experience",
"manifest_version": 2,
"permissions": [
"storage",
"declarativeContent",
"https://stadia.google.com/*"
],
"content_scripts": [
{
"matches": [
"https://stadia.google.com/*"
],
"js": [
"content/content.js"
],
"run_at": "document_end"
}
],
"icons": {
"128": "icon.png"
},
"browser_action": {
"default_icon": {
"128": "icon.png"
},
"default_popup": "popup/popup.html",
"default_title": "The Stadia Plus"
}
}