IstrolidPro

IstrolidPro

This extension adds functionality to the game Istrolid

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "IstrolidPro",
  "description": "This extension adds functionality to the game Istrolid",
  "version": "1.2.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Click on the icon for information."
  },
  "permissions": [
    "tabs",
    "http://www.istrolid.com/game.html"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.istrolid.com/game.html"
      ],
      "js": [
        "starter.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "script.js",
    "change.js"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "script.js"
    ]
  }
}