Staff Treats Employee Discounts & Perks

Staff Treats Employee Discounts & Perks

Never search for a discount code or cashback rate again!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Staff Treats Employee Discounts & Perks",
  "short_name": "Staff Treats",
  "description": "Never search for a discount code or cashback rate again!",
  "version": "2.3",
  "browser_action": {
    "default_icon": "img/STGrey128.png",
    "default_title": "Staff Treats",
    "default_popup": "index.html"
  },
  "icons": {
    "16": "img/STGrey16.png",
    "48": "img/STGrey48.png",
    "128": "img/STGrey128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "notifications"
  ],
  "background": {
    "scripts": [
      "assets/js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/js/content-script.js"
      ]
    }
  ],
  "options_page": "assets/js/stafftreatsavailable.html",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "web_accessible_resources": [
    "assets/css/*",
    "assets/js/*",
    "assets/fonts/*"
  ]
}