TcNo Rust Drop Assistant

TcNo Rust Drop Assistant

A simple Open-source extension to extend Twitch Drop functionality. Full project source available here: https://github.com/TcNobo/TcNo-Rust-Drop-Assistant Helps users see which items they have claimed after watching Twitch streams on Facepunch site

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "TcNo Rust Drop Assistant",
  "author": "Wesley Pyburn",
  "description": "An easy way to view available twitch drops for Rust",
  "version": "1.3.8",
  "homepage_url": "https://tcno.co/",
  "browser_action": {
    "default_icon": "images/icon256x256.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon16x16.png",
    "32": "images/icon32x32.png",
    "48": "images/icon48x48.png",
    "128": "images/icon128x128.png"
  },
  "web_accessible_resources": [
    "TcNoEmbed.js"
  ],
  "permissions": [
    "storage",
    "*://*.twitch.tv/drops/*",
    "*://*.twitch.facepunch.com/*"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "*://*.twitch.tv/drops/inventory*",
        "*://*.twitch.facepunch.com/*"
      ],
      "js": [
        "inj.js"
      ]
    }
  ]
}