Take Me To Just The Recipe

Take Me To Just The Recipe

Get just the recipe from a recipe website by opening it in justtherecipe.app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Take Me To Just The Recipe",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Get just the recipe from a recipe website by opening it in justtherecipe.app.",
  "browser_action": {
    "name": "Click to open page in justtherecipe.app"
  },
  "background": {
    "scripts": [
      "dist/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "16": "assets/icon-16.png",
    "24": "assets/icon-24.png",
    "32": "assets/icon-32.png",
    "64": "assets/icon-64.png",
    "128": "assets/icon-128.png"
  }
}