{ "manifest_version": 3, "name": "SGDB Button on Steam", "version": "1.0.0", "description": "Adds a button on Steam game pages to bring you to its SteamGridDB entry.", "permissions": [ "storage" ], "action": { "default_icon": "icons/icon_128.png", "default_popup": "popup.html" }, "icons": { "16": "icons/icon_16.png", "32": "icons/icon_32.png", "48": "icons/icon_48.png", "64": "icons/icon_64.png", "96": "icons/icon_96.png", "128": "icons/icon_128.png" }, "content_scripts": [ { "matches": [ "*://store.steampowered.com/app/*", "*://steamcommunity.com/app/*" ], "js": [ "script.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons/icon_16_white.png" ], "matches": [ "*://store.steampowered.com/app/*", "*://steamcommunity.com/app/*" ] } ] }