ScribeUp

ScribeUp

Enjoy total control and monthly savings when you use ScribeUp for risk-free trials and subscriptions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Enjoy total control and monthly savings when you use ScribeUp for risk-free trials and subscriptions.",
  "version": "0.1.5.3",
  "manifest_version": 3,
  "name": "ScribeUp",
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "favicon-32x32.png"
  },
  "icons": {
    "192": "favicon-192x192.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "autoSwapIframeScript.bundle.js"
      ],
      "exclude_matches": [
        "https://polaris.xfinity.com/*"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "mqFrameContentScript.bundle.js"
      ],
      "exclude_matches": [
        "https://polaris.xfinity.com/*"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://localhost:3002/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://account.scribeup.io/*"
    ]
  }
}