Examine source code of QLattes

Inspect and view changes in QLattes 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
{
  "manifest_version": 3,
  "name": "QLattes",
  "version": "0.1.7",
  "description": "Automatically annotate the Qualis classification of journal publications listed in CNPq's CV Lattes pages.",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "images/icon-16.png",
    "default_title": "QLattes",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://buscatextual.cnpq.br/buscatextual/visualizacv.do*",
        "https://buscatextual.cnpq.br/buscatextual/visualizacv.do*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "data/*.json",
        "html/*.html"
      ],
      "matches": [
        "http://buscatextual.cnpq.br/*",
        "https://buscatextual.cnpq.br/*",
        "file:///*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}