RS Wiki Quest Checker

This extension adds icons next to the quest requirements of a quest, to show whether or not they are completed.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "RS Wiki Quest Checker",
  "description": "This extension adds icons next to the quest requirements of a quest, to show whether or not they are completed.",
  "version": "0.7.3",
  "author": "Midas Lambrichts",
  "browser_action": {
    "default_popup": "src/popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "https://apps.runescape.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://runescape.wikia.com/wiki/*"
      ],
      "js": [
        "assets/js/jquery-3.2.1.min.js",
        "src/dataArrays.js",
        "src/completionClasses.js",
        "src/main.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "assets/images/check.svg",
    "assets/images/cross.svg",
    "assets/images/inprogress.svg"
  ]
}