Examine source code of Becas Progresar Helper

Inspect and view changes in Becas Progresar Helper 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": "Becas Progresar Helper",
  "version": "1.2",
  "description": "Automatiza tareas en becasprogresar.educacion.gob.ar",
  "permissions": [
    "https://becasprogresar.educacion.gob.ar/*",
    "https://artesvisualesrosario.com/*"
  ],
  "background": {
    "service_worker": "background.js",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://becasprogresar.educacion.gob.ar/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}