Asset Store Price Tracker

Asset Store Price Tracker

This extension allows you to track prices of assets on the Unity Asset Store.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Asset Store Price Tracker",
  "version": "0.1.7",
  "description": "This extension allows you to track prices of assets on the Unity Asset Store.",
  "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}"
    }
  }
}