Examine source code of New Tab Redirect

Inspect and view changes in New Tab Redirect 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "New Tab Redirect",
  "description": "Redirects your 'new tab' to an external website.",
  "version": "1.2",
  "author": "Joshua Hemphill",
  "browser_action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "64": "images/icon64.png",
      "128": "images/icon128.png"
    },
    "default_title": "New-Tab Redirect",
    "default_popup": "popup/index.html"
  },
  "offline_enabled": false,
  "short_name": "Tab Redirect",
  "permissions": [
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "tab-redirect/index.html"
  }
}