Steam Gift Pro

Steam Gift Pro

A Chrome Extension that enhances Gift Page of Steam, to add anchor link to store page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArAaRsTkyGgAicD8Z3nh2oX0kzAwNpO21vnGQfrcmbbFGvRvHxuEU5F2Su8/ar4FvdTkPxmesomSquyCTr10BtX19M4IJ58LKWA/V9/kSYBKLS1zXy7RFjAmWRavepQz1kH2soTGW+QXsRMIum4kuMgeAIkDFtveg4u+Iemrz97/5bhx7SkuxLJLIJqqHI5fAJjhfscg5/YbHj4h3QgBCshDdMdUDdTfWkKdP4oVRaKgS8/TJuh5fzFZs/0eh45LdGVB+GsVHu29fEQ4zf8rrynWoUkY3v/6VxwMyebr2six0bE9hY3CKmowPB1KghRuPGO9GChtxQbiEPgMNcRMkgQIDAQAB",
  "manifest_version": 3,
  "version": "1.5.2",
  "name": "Steam Gift Pro",
  "description": "A Chrome Extension that enhances Gift Page of Steam, to add anchor link to store page",
  "author": "whatasoda <[email protected]>",
  "icons": {
    "128": "assets/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://steamcommunity.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "host_permissions": [
    "https://cdn.akamai.steamstatic.com/*",
    "https://steamcommunity-a.akamaihd.net/*",
    "https://steamcdn-a.akamaihd.net/*",
    "https://cdn.cloudflare.steamstatic.com/*",
    "https://community.cloudflare.steamstatic.com/*"
  ]
}