Get to the Recipe!

Get to the Recipe!

Skip past all the waffle and get to the actual recipe on a website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Get to the Recipe!",
  "version": "1.0",
  "description": "Skip past all the waffle and get to the actual recipe on a website.",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "./logo.png",
    "96": "./logo.png",
    "128": "./logo.png"
  }
}