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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
ID | pohdgoipnoaopknopkpdeooophfnkmel |
公式URL | 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 |
Eメール | [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" ] } |