StockX Assistant

StockX Assistant

Access the Now… From Anywhere.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "StockX Assistant",
  "version": "0.1.5",
  "manifest_version": 3,
  "description": "Access the Now… From Anywhere.",
  "homepage_url": "https://stockx.com",
  "action": {
    "default_title": "StockX",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/Artboard-DS.png",
      "48": "icons/Artboard-DS.png",
      "128": "icons/Artboard-DS.png"
    }
  },
  "icons": {
    "16": "icons/Artboard-DS.png",
    "48": "icons/Artboard-DS.png",
    "128": "icons/Artboard-DS.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "https://*.algolianet.com/*",
    "https://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.algolianet.com/*"
    ]
  },
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/stockXButton.css"
      ]
    }
  ]
}