Examine source code of Custom New Tab Page (Revived)

Inspect and view changes in Custom New Tab Page (Revived) 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
{
  "manifest_version": 2,
  "name": "Custom New Tab Page (Revived)",
  "version": "1.0.1",
  "description": "Specify a custom URL to be shown when opening a new tab, without changing the address bar content",
  "developer": {
    "name": "Bovive",
    "url": "https://github.com/Bovive/firefox-custom-new-tab-page"
  },
  "icons": {
    "48": "img/icon-48.png",
    "96": "img/icon-96.png"
  },
  "applications": {
    "gecko": {
      "id": "custom-new-tab-page-revived@bovive",
      "strict_min_version": "58.0"
    }
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "storage"
  ],
  "optional_permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "chrome_url_overrides": {
    "newtab": "app.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}