TagProReplays

TagProReplays

Save Replays from within TagPro Games

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TagProReplays",
  "version": "1.6.7",
  "description": "Save Replays from within TagPro Games",
  "minimum_chrome_version": "49",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_matches": [
        "http://support.koalabeast.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/record.css",
        "css/menu.css",
        "css/viewer.css"
      ],
      "matches": [
        "*://*.koalabeast.com/*",
        "*://koalabeast.com/*",
        "http://*.newcompte.fr/*",
        "http://tangent.jukejuice.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "images/icon128.png"
  },
  "sandbox": {
    "pages": [
      "html/ajv-sandbox.html"
    ]
  },
  "web_accessible_resources": [
    "js/recording.js",
    "images/*.png",
    "html/*.html",
    "css/*.css",
    "fonts/*"
  ]
}