Rex - Social Shopping Assistant

Rex - Social Shopping Assistant

Rex - Your Social Shopping Assistant

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Rex - Your Social Shopping Assistant",
  "version": "3.2.6",
  "name": "Rex - Social Shopping Assistant",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "128.png"
  },
  "icons": {
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://accounts.google.com/*",
        "https://www.facebook.com/*",
        "https://*.firebaseapp.com/*",
        "https://*.rexfriends.medium.com/",
        "https://*.rexfriends.com/"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "content.styles.css",
    "128.png"
  ],
  "permissions": [
    "activeTab",
    "storage",
    "tabs",
    "https://www.google.com/*",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://apis.google.com/ http://127.0.0.1:5000/* 'unsafe-eval'; object-src 'self'"
}