Examine source code of Recipe Jump

Inspect and view changes in Recipe Jump 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": "Recipe Jump",
  "description": "Automatically jumps the recipe card to the top of the page on recipe sites",
  "version": "1.4",
  "icons": {
    "16": "images/recipejumpicon16.png",
    "38": "images/recipejumpicon32.png",
    "48": "images/recipejumpicon48.png",
    "128": "images/recipejumpicon128.png"
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "sidePanel"
  ],
  "background": {
    "service_worker": "background_script.js"
  },
  "action": {
    "default_title": "Click to open panel"
  },
  "side_panel": {
    "default_path": "panel.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "script.js"
      ],
      "run_at": "document_end"
    }
  ]
}