Examine source code of Popupblocker

Inspect and view changes in Popupblocker 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,
  "name": "Popupblocker",
  "author": "Joofthan",
  "version": "2.1.3",
  "description": "This add-on can block every popup. Many websites open new windows with ads, when you try to mark text or click something.",
  "options_ui": {
    "page": "resources/blackwhitelist.html",
    "browser_style": true
  },
  "icons": {
    "38": "resources/icons/icon-38.png",
    "40": "resources/icons/icon-40.png",
    "96": "resources/icons/icon-96.png"
  },
  "background": {
    "scripts": [
      "main/js/bundle.js",
      "main/js/script.js"
    ],
    "persistent": true
  },
  "permissions": [
    "tabs",
    "notifications",
    "storage",
    "contentSettings"
  ],
  "browser_action": {
    "default_icon": {
      "38": "resources/icons/icon-38-dt.png",
      "40": "resources/icons/icon-40.png",
      "96": "resources/icons/icon-96.png"
    },
    "default_title": "Popupblocker",
    "default_popup": "resources/popups/disabled-temp.html"
  }
}