CashBOX Watcher

CashBOX Watcher

This extension is designed to alerts on new tasks and monitoring tasks on the website cashbox.money

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "CashBOX Watcher",
  "version": "1.0.5",
  "description": "This extension is designed to alerts on new tasks and monitoring tasks on the website cashbox.money",
  "icons": {
    "48": "img/Cashbox_48.png",
    "96": "img/Cashbox_96.png"
  },
  "browser_action": {
    "default_icon": {
      "64": "img/polygon-64-pen.png"
    },
    "default_title": "CashBOX Watcher"
  },
  "background": {
    "scripts": [
      "js/static.js",
      "js/storeddata.js",
      "js/tempdata.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/static.js",
        "js/content_script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "applications": {
    "gecko": {
      "id": "watcher@cashbox.money",
      "strict_min_version": "88.0"
    }
  }
}