Examine source code of Explain XKCD

Inspect and view changes in Explain XKCD source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "applications": {
    "gecko": {
      "id": "explain-xkcd@isaac-newt.com",
      "strict_min_version": "54.0"
    }
  },
  "manifest_version": 2,
  "name": "Explain XKCD",
  "version": "0.0.2",
  "description": "Get a quick explaination for the current XKCD comic",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "page_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Explain This Comic",
    "show_matches": [
      "https://xkcd.com/*",
      "https://www.xkcd.com/*"
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}