Examine source code of RecipeLink

Inspect and view changes in RecipeLink 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": 2,
  "name": "RecipeLink",
  "description": "Quickly jump to the actual recipe - Skip the fluff.",
  "version": "0.0.0.1",
  "offline_enabled": false,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-3.4.1.min.js",
        "content.js"
      ],
      "web_accessible_resources": [
        "styles.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}