Examine source code of Gmail Adblocker

Inspect and view changes in Gmail Adblocker 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",
  "background": {
    "service_worker": "/js/bg-worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/content.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_APP_DESCRIPTION__",
  "homepage_url": "https://adblocker-for-gmail.freeonlineapps.net",
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_APP_NAME__",
  "permissions": [
    "tabs",
    "storage"
  ],
  "short_name": "__MSG_APP_NAME__",
  "version": "3.0.1",
  "action": {
    "default_icon": {
      "16": "img/16.png",
      "64": "img/64.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_app_name__"
  }
}