Examine source code of Print My Recipe

Inspect and view changes in Print My Recipe 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": "Print My Recipe",
  "version": "2.0",
  "description": "Quickly print recipes by bypassing ads and junk!",
  "permissions": [
    "activeTab",
    "scripting",
    "contextMenus"
  ],
  "action": {
    "default_title": "Find and Print My Recipe"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "128": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "display.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}