Plate Scraper
Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.
Plate Scraper là gì?
Plate Scraper là một tiện ích mở rộng Chrome được phát triển bởi SpencerWhitehead7, và tính năng chính của nó là "Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Plate Scraper
Tải xuống các tệp mở rộng Plate Scraper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pohdgoipnoaopknopkpdeooophfnkmel |
URL Chính Thức | https://chromewebstore.google.com/detail/plate-scraper/pohdgoipnoaopknopkpdeooophfnkmel |
Mô tả | Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext. |
Kích Thước Tệp | 36.01 KB |
Số Lần Cài Đặt | 10 |
Phiên Bản Hiện Tại | 0.10 |
Cập Nhật Lần Cuối | 2020-06-25 |
Ngày Phát Hành | 2020-06-24 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | SpencerWhitehead7 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/SpencerWhitehead7/Recipe_Scraper_Chrome_Extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |