Examine source code of Incognito homepage

Inspect and view changes in Incognito homepage 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": "Incognito homepage",
  "version": "1.0",
  "description": "Set a privacy-oriented search engine as your homepage and new tab.",
  "icons": {
    "16": "Logo.png",
    "48": "Logo_48.png",
    "128": "Logo_128.png"
  },
  "chrome_settings_overrides": {
    "homepage": "https://www.misterincognito.com/start"
  },
  "chrome_url_overrides": {
    "newtab": "new-tab.html"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "https://*.misterincognito.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}