Examine source code of LDV Generator

Inspect and view changes in LDV Generator 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": "LDV Generator",
  "version": "1.901",
  "description": "Dalla pagina \"dettaglio della vendita\" di eBay.it e amazon.it crea un box in grado di inviare i dati al software LDV Generator",
  "content_scripts": [
    {
      "matches": [
        "*://payments.ebay.it/ws/eBayISAPI.dll?ViewPaymentStatus&*",
        "*://vod.ebay.it/vod/FetchOrderDetails*",
        "*://k2b-bulk.ebay.it/ws/eBayISAPI.dll?EditSalesRecord&*",
        "*://www.ebay.it/sh/ord/details*",
        "*://www.ebay.it/mesh/ord/details*",
        "*://sellercentral.amazon.it/hz/orders/details*",
        "*://sellercentral.amazon.it/orders/details*",
        "*://sellercentral.amazon.it/orders-v3/order*",
        "*://sellercentral-europe.amazon.com/hz/orders/details*",
        "*://sellercentral-europe.amazon.com/orders/details*",
        "*://sellercentral-europe.amazon.com/orders-v3/order*",
        "http://www.maipiusenza.com/LDV/test*",
        "https://www.maipiusenza.com/Nadia*"
      ],
      "css": [
        "ldv.css"
      ],
      "js": [
        "contentscript.js",
        "ldv.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webNavigation",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://sellercentral.amazon.it/*",
    "*://sellercentral-europe.amazon.com/*",
    "https://www.maipiusenza.com/LDV/API/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png",
        "ldv.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "48": "images/ico48.png",
    "64": "images/ico64.png",
    "128": "images/ico64.png"
  },
  "options_ui": {
    "page": "options.html"
  },
  "manifest_version": 3
}