Topshot Tracker

Topshot Tracker

An extension that shows you the lowest ask of each of your moments, as well as your total collections value

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Topshot Tracker",
  "version": "1.0.1",
  "description": "An extension that shows you the lowest ask of each of your moments, as well as your total collections value",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "manifest_version": 2,
  "permissions": [
    "http://*.nbatopshot.com/*",
    "https://*.nbatopshot.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.nbatopshot.com/*",
        "https://*.nbatopshot.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Topshot Tracker"
  }
}