RogueBot

RogueBot

Bot for Rogue in stock notification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RogueBot",
  "version": "1.0",
  "description": "Bot for Rogue in stock notification",
  "manifest_version": 2,
  "permissions": [
    "storage",
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://*.roguefitness.com/*"
      ]
    }
  ]
}