QuoteGoat

QuoteGoat

Get the latest offers, cashback and voucher codes at quotegoat.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "includes/content.js"
      ]
    }
  ],
  "name": "QuoteGoat",
  "short_name": "QuoteGoat",
  "icons": {
    "16": "icons/button.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "web_accessible_resources": [
    "js/*",
    "toolbar/*",
    "icons/*"
  ],
  "description": "Get the latest offers, cashback and voucher codes at quotegoat.com",
  "background": {
    "page": "background.html"
  },
  "homepage_url": "https://www.quotegoat.com/cashback",
  "version": "1.0.3",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icons/button.png",
    "default_title": "The Quote Goat Cashback Extension"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "webNavigation"
  ]
}