Get the Recipe|AI YouTube Recipe Clipper with ChatGPT

Get the Recipe|AI YouTube Recipe Clipper with ChatGPT

The fastest way to get the recipe from YouTube videos with GPT-4. Extract, copy & save just the recipe. No distractions, no ads.

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 the Recipe|AI YouTube Recipe Clipper with ChatGPT",
  "version": "0.3",
  "description": "The fastest way to get the recipe from YouTube videos with GPT-4. Extract, copy & save just the recipe. No distractions, no ads.",
  "permissions": [
    "identity"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icons/icon16.png",
      "48": "images/icons/icon48.png",
      "128": "images/icons/icon128.png"
    }
  },
  "oauth2": {
    "client_id": "333097622520-cg7ja6ickq0lekccs8pen60i9voqkin8.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "icons": {
    "16": "images/icons/icon16.png",
    "48": "images/icons/icon48.png",
    "128": "images/icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/watch?v=*",
        "https://youtube.com/watch?v=*",
        "https://youtu.be/watch?v=*"
      ]
    }
  ]
}