Examine source code of Zenity

Inspect and view changes in Zenity 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": "Zenity",
  "version": "0.3.0",
  "description": "Remove annoying parts of websites. Regain your zenity in one click.",
  "icons": {
    "48": "icons/zenity-48.png",
    "96": "icons/zenity-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  }
}