Examine source code of Leganto Cite it! Bookmarking Tool

Inspect and view changes in Leganto Cite it! Bookmarking Tool 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": "Leganto Cite it! Bookmarking Tool",
  "description": "Leganto Cite it! bookmarking extension",
  "version": "1.2",
  "permissions": [
    "scripting",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*/leganto/*",
    "http://*/leganto/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "leganto.citeit@clarivate.com"
    },
    "background": {
      "scripts": [
        "scripts/background.js"
      ]
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pages/main.html",
        "pages/login.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": "icons/cite-it-logo.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "jquery_3.5.1.js",
        "scripts/content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}