EE Extras

EE Extras

Adds a few functional features to the EasyEquities website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "version": "1.2.3",
  "author": "Gareth Stephenson",
  "icons": {
    "16": "img/16px.png",
    "48": "img/48px.png",
    "128": "img/128px.png"
  },
  "action": {
    "default_icon": {
      "16": "img/16px.png",
      "48": "img/48px.png",
      "128": "img/128px.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "EasyEquities Extras"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.svg",
        "*.json",
        "popup/popup.html"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://platform.easyequities.io/AccountOverview"
      ],
      "js": [
        "common.js",
        "contentscript.js"
      ],
      "css": [
        "styles.css",
        "slider.css"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://heq4s7r6ri2jn2b3vzxnskxasu0xmrhu.lambda-url.af-south-1.on.aws/",
    "https://api.currconv.com/api/v7/convert",
    "https://ee-extras.net/flags.json"
  ]
}