Examine source code of BYE! Gmail Extension

Inspect and view changes in BYE! Gmail Extension 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": "BYE! Gmail Extension",
  "description": "The most effective and affordable solution to completely block and clean out unwanted emails in any corner of Gmail.",
  "version": "0.1.7",
  "manifest_version": 3,
  "icons": {
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "externally_connectable": {
    "matches": [
      "https://www.byeextension.com/*"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "48": "images/48.png",
      "128": "images/128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/",
        "https://*/"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery.js",
        "js/jquery-ui.js",
        "js/sweetalert2.all.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "alarms",
    "identity",
    "identity.email",
    "activeTab"
  ],
  "host_permissions": [
    "https://www.google.com/*",
    "https://www.googleapis.com/*",
    "https://accounts.google.com/*",
    "https://content-gmail.googleapis.com/*",
    "https://cdn.skypack.dev/@mozilla/readability",
    "<all_urls>",
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "oauth2": {
    "client_id": "http://633933115277-ant7mes1hne1hjk0rj443nc4rk1a7sdj.apps.googleusercontent.com/",
    "scopes": [
      "https://mail.google.com/",
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile",
      "https://www.googleapis.com/auth/gmail.settings.basic"
    ]
  }
}