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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } |