Steam U2T

Steam U2T

Steam için USD/TL çeviricisi.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.1.11",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "assets/icon-16.png",
    "128": "assets/icon-128.png"
  },
  "default_locale": "tr",
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.steamcommunity.com/*",
        "https://*.store.steampowered.com/*"
      ],
      "js": [
        "scripts/globals.js",
        "scripts/helpers.js",
        "scripts/content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "*://api.genelpara.com/*"
  ]
}