Unity AssetStore Price Tracker

Unity AssetStore Price Tracker

This extension allows you to track prices of unity assets

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Unity Asset Store Price Tracker",
  "version": "0.1.6",
  "description": "This extension allows you to track prices of Unity assets",
  "manifest_version": 3,
  "icons": {
    "128": "icon128.png"
  },
  "host_permissions": [
    "https://assetstore.unity.com/packages/*",
    "https://price-tracker-mocha.now.sh/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://assetstore.unity.com/packages/*"
      ],
      "js": [
        "dependencies/chart.min.js",
        "content-script.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "128": "icon128.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dependencies/chart.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{64dd9424-94db-4358-b4a6-6e81626e2b08}"
    }
  }
}