Examine source code of Hide Incognito Mode

Inspect and view changes in Hide Incognito Mode 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": 2,
  "author": "Chris Rehfeld rehfeldchris@gmail.com",
  "homepage_url": "http://rehfeld.us/browser-extensions/hide-incognito-mode",
  "name": "Hide Incognito Mode",
  "short_name": "HideIncog",
  "extNameCode": "him",
  "description": "This extension helps you avoid some incognito mode detection methods, allowing you to view certain web pages in incognito mode.",
  "version": "1.10",
  "minimum_chrome_version": "70",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true,
      "js": [
        "hide-incognito-mode-script-injector.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "hide-incognito-mode-background.js"
    ],
    "persistent": false
  },
  "web_accessible_resources": [
    "popup.js",
    "hide-incognito-mode-util.mjs",
    "popup.html",
    "ext-web/setup.html",
    "ext-web/updated.html",
    "ext-web/hide-incognito-mode-install-config.gif",
    "ext-web/hide-incognito-mode-setup.png",
    "ext-web/him-details-button.png",
    "ext-web/him-mode-buttons.png",
    "ext-web/hide-incognito-mode-setup.png",
    "ext-web/incognito-setting.png"
  ],
  "commands": {
    "wipe-data": {
      "suggested_key": {
        "default": "Ctrl+Shift+0"
      },
      "description": "Wipe Private Data (feature not working yet)"
    }
  },
  "incognito": "split",
  "permissions": [
    "storage",
    "browsingData"
  ],
  "icons": {
    "16": "icons/bandit_mask_16x16.png",
    "48": "icons/bandit_mask_48x48.png",
    "128": "icons/bandit_mask_128x128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/bandit_mask_16x16.png",
      "48": "icons/bandit_mask_48x48.png",
      "128": "icons/bandit_mask_128x128.png"
    },
    "default_title": "Hide Incognito Mode config",
    "default_popup": "popup.html"
  }
}