Plate Scraper

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

什麼是Plate Scraper?

Plate Scraper是由SpencerWhitehead7開發的Chrome擴展程式,該擴展的主要功能是“Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.”。

擴展截圖

screenshot

下載Plate Scraper擴展crx文件

下載Plate Scraper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension extracts the title, ingredients, and instructions from recipes on top recipe aggregation sites and gives you them as easily editable, minimally formatted, downloadable text in a popup. Different HTML layouts and text formats can make saving recipes by copy-pasting the text directly extremely frustrating; this extension simplifies the process and makes it easy to save personal, easily customized versions of your favorite recipes from popular recipe aggregation sites.

If you want to edit recipes in any way (make notes, change ingredient quantities) or are worried you'll lose track of your favorites, you can now easily save and customize them however you want.

Supports the top 16 recipe aggregation sites (by traffic), including allrecipes, epicurious, foodnetwork, seriouseats, etc.                    

擴展基本資訊

名稱 Plate Scraper Plate Scraper
ID pohdgoipnoaopknopkpdeooophfnkmel
官方網址 https://chromewebstore.google.com/detail/plate-scraper/pohdgoipnoaopknopkpdeooophfnkmel
簡介 Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.
檔案大小 36.01 KB
安裝次數 10
目前版本 0.10
更新時間 2020-06-25
上架時間 2020-06-24
評分 5.00/5 共 2 次評分
開發者 SpencerWhitehead7
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/SpencerWhitehead7/Recipe_Scraper_Chrome_Extension
支援的語言 en-US
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": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.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"
    ]
}