Examine source code of Haalmeeruitjecard

Inspect and view changes in Haalmeeruitjecard 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",
  "name": "Haalmeeruitjecard",
  "version": "1.1",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/",
    "storage"
  ],
  "description": "Mis nooit meer een site die meedoet met Haalmeeruitjecard!",
  "browser_action": {
    "default_icon": "icon1.png",
    "default_popup": "popup.html"
  }
}