rustLink

rustLink

This extension will collect your Rust+ Token in order to use rustLink.io services. How to use? Click on the extension icon to be…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "rustLink",
  "version": "1.0.1",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://companion-rust.facepunch.com/*",
        "http://rustlink.io/*",
        "https://rustlink.io/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_title": "Authenticate to rustLink.io",
    "default_icon": "icons/auth.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "catcher.js"
      ],
      "matches": [
        "https://companion-rust.facepunch.com/*"
      ]
    }
  ]
}