Examine source code of Custom popup ui

Inspect and view changes in Custom popup ui 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 popup ui",
  "version": "2020.0.0.1",
  "author": "Yash Jain",
  "description": "Provides domain name of any site and confirmed with user using custom modal popup",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.js",
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {
    "default_icon": {
      "16": "icons/custom_popup16.png",
      "32": "icons/custom_popup32.png",
      "48": "icons/custom_popup48.png",
      "128": "icons/custom_popup128.png"
    },
    "default_title": "Custom popup ui"
  },
  "icons": {
    "16": "icons/custom_popup16.png",
    "32": "icons/custom_popup32.png",
    "48": "icons/custom_popup48.png",
    "128": "icons/custom_popup128.png"
  },
  "permissions": [
    "<all_urls>",
    "nativeMessaging",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "icons/custom_popup48.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}