Plate Scraper

Plate Scraper

Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Plate Scraper",
  "short_name": "PS",
  "manifest_version": 2,
  "version": "0.10",
  "description": "Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "content.js"
      ],
      "matches": [
        "*://www.allrecipes.com/*",
        "*://www.bettycrocker.com/*",
        "*://www.bonappetit.com/*",
        "*://www.chowhound.com/*",
        "*://www.cookinglight.com/*",
        "*://www.eatingwell.com/*",
        "*://fallback-origin.eatingwell.com/*",
        "*://www.epicurious.com/*",
        "*://www.food.com/*",
        "*://food52.com/*",
        "*://www.foodandwine.com/*",
        "*://www.foodnetwork.com/*",
        "*://www.jamieoliver.com/*",
        "*://www.myrecipes.com/*",
        "*://www.seriouseats.com/*",
        "*://www.simplyrecipes.com/*",
        "*://www.thekitchn.com/*"
      ]
    }
  ],
  "page_action": {
    "default_icon": "icon128.png",
    "default_title": "Plate Scraper"
  },
  "permissions": [
    "tabs",
    "activeTab"
  ]
}