Steam URL Opener

Steam URL Opener

Allows you to open URLs inside Steam Client to save the hasle of logging in normal browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "0.1.1",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 3,
  "default_locale": "en",
  "icons": {
    "64": "images/icon-64.png",
    "128": "images/icon-128.png"
  },
  "minimum_chrome_version": "93",
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "action": {
    "default_icon": {
      "64": "images/icon-64.png",
      "128": "images/icon-128.png"
    },
    "default_title": "Open in Steam"
  },
  "permissions": [
    "activeTab",
    "declarativeContent"
  ]
}