Pokken Tier List Maker

Pokken Tier List Maker

Adds Pokken Tournament to the tier list maker

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pokken Tier List Maker",
  "description": "Adds Pokken Tournament to the tier list maker",
  "version": "0.1.0",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://jcal.zone/smash-apps/tier/",
        "https://jcal.zone/smash-apps/tier/",
        "http://www.mmcafe.com/tiermaker/*",
        "https://www.mmcafe.com/tiermaker/*"
      ],
      "js": [
        "scripts/main.js"
      ]
    }
  ],
  "permissions": [
    "http://jcal.zone/smash-apps/tier/",
    "https://jcal.zone/smash-apps/tier/"
  ],
  "web_accessible_resources": [
    "scripts/tiers.js",
    "scripts/tiercharts.js"
  ]
}