LUFC Seat Count

LUFC Seat Count

This extension was created with the awesome extensionizr.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LUFC Seat Count",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "This extension was created with the awesome extensionizr.com",
  "homepage_url": "https://www.lufc.talent-sport.co.uk/PagesPublic/Home/home.aspx",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "js/jquery/jquery.min.js",
      "js/jquery-ui/jquery-ui.min.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.lufc.talent-sport.co.uk/*"
      ],
      "js": [
        "src/inject/inject.js",
        "js/jquery/jquery.min.js",
        "js/jquery-ui/jquery-ui.min.js"
      ],
      "css": [
        "css/background.css"
      ]
    }
  ]
}