T2 Point Counter

T2 Point Counter

Totals up all of your T2 points!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "T2 Point Counter",
  "description": "Totals up all of your T2 points!",
  "version": "1.0.2",
  "permissions": [
    "activeTab",
    "https://www.t2tea.com/"
  ],
  "icons": {
    "32": "imgs/t2logo_32.png",
    "64": "imgs/t2logo_64.png",
    "128": "imgs/t2logo_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.t2tea.com/your-account/order-history/*",
        "http://www.t2tea.com/your-account/order-history/*"
      ],
      "js": [
        "jquery.min.js",
        "content.js"
      ]
    }
  ]
}