This extension displays the ProtonDB rating of a game on Steam
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": 2,
"name": "ProtonDB status on Steam",
"version": "0.1.0",
"author": "Vegard Berg",
"icons": {
"48": "proton_48.png",
"64": "proton_64.png",
"96": "proton_96.png",
"128": "proton_128.png"
},
"content_scripts": [
{
"matches": [
"*://store.steampowered.com/app/*"
],
"js": [
"script.js"
],
"css": [
"style.css"
]
}
],
"permissions": [
"*://*.protondb.com/*",
"*://*.steampowered.com/*",
"webRequest"
]
}