Examine source code of News Proz

Inspect and view changes in News Proz 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": "News Proz",
  "description": "Get latest news and block all annoying popup ads with News Proz",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "16X16.png",
    "48": "48X48.png",
    "128": "128X128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "News Proz",
    "default_icon": "128X128.png"
  },
  "permissions": [
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}