PDF Generator

A simple tool to quickly and easily generate PDF documents from plain text
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": "PDF Generator",
  "short_name": "PDF",
  "description": "A simple tool to quickly and easily generate PDF documents from plain text",
  "version": "1.0.2",
  "offline_enabled": false,
  "icons": {
    "16": "css/icons/16x16.png",
    "32": "css/icons/32x32.png",
    "36": "css/icons/36x36.png",
    "48": "css/icons/48x48.png",
    "64": "css/icons/64x64.png",
    "72": "css/icons/72x72.png",
    "96": "css/icons/96x96.png",
    "128": "css/icons/128x128.png",
    "144": "css/icons/144x144.png",
    "192": "css/icons/192x192.png",
    "512": "css/icons/512x512.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "commands": {
    "generatePDF": {
      "description": "Generate PDF",
      "suggested_key": {
        "default": "Ctrl+B",
        "mac": "Command+B"
      }
    }
  },
  "action": {
    "default_icon": "css/icons/96x96.png",
    "default_popup": "index.html",
    "default_title": "PDF Generator"
  },
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}