Examine source code of Invoice Generator

Inspect and view changes in Invoice 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",
  "manifest_version": 3,
  "name": "Invoice Generator",
  "version": "1.2",
  "description": "A simple invoice generator that creates invoices in PDF format.",
  "default_locale": "en",
  "permissions": [],
  "action": {
    "default_icon": {
      "16": "images/invoice-16.png",
      "48": "images/invoice-32.png",
      "128": "images/invoice-128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "_locales/en/*",
        "locales/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/invoice-16.png",
    "48": "images/invoice-32.png",
    "128": "images/invoice-128.png"
  }
}