Examine source code of Zonaprop Tools

Inspect and view changes in Zonaprop Tools 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",
  "manifest_version": 3,
  "name": "Zonaprop Tools",
  "version": "0.0.1",
  "icons": {
    "16": "assets/icons/favicon-16.png",
    "32": "assets/icons/favicon-32.png",
    "48": "assets/icons/favicon-48.png",
    "128": "assets/icons/favicon-128.png"
  },
  "description": "Instalá Zonaprop Tools hoy y convertite en un master inmobiliario.",
  "homepage_url": "https://jorge-passetti.netlify.app/",
  "short_name": "Zonaprop Tools",
  "host_permissions": [
    "https://www.zonaprop.com.ar/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/favicon-16.png",
        "assets/icons/favicon-32.png",
        "assets/icons/favicon-48.png",
        "assets/icons/favicon-128.png",
        "assets/styles/index.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "author": "jorgepassetti",
  "minimum_chrome_version": "88",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "assets/icons/favicon-16.png",
      "32": "assets/icons/favicon-32.png",
      "48": "assets/icons/favicon-48.png",
      "128": "assets/icons/favicon-128.png"
    },
    "default_title": "Zonaprop Tools",
    "opera__chrome_style": false
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./js/serviceWorker.bundle.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.zonaprop.com.ar/*"
      ],
      "js": [
        "js/contentScript.bundle.js"
      ]
    }
  ]
}