Plate Scraper
Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.
O que é Plate Scraper?
Plate Scraper é uma extensão do Chrome desenvolvida por SpencerWhitehead7, e sua principal característica é "Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Plate Scraper
Baixe arquivos de extensão Plate Scraper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | |
ID | pohdgoipnoaopknopkpdeooophfnkmel |
URL Oficial | https://chromewebstore.google.com/detail/plate-scraper/pohdgoipnoaopknopkpdeooophfnkmel |
Descrição | Scrapes title, ingredients, and instructions from recipe sites as editable, minimally formatted, downloadable plaintext. |
Tamanho do Arquivo | 36.01 KB |
Contagem de Instalações | 10 |
Versão Atual | 0.10 |
Última Atualização | 2020-06-25 |
Data de Publicação | 2020-06-24 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | SpencerWhitehead7 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/SpencerWhitehead7/Recipe_Scraper_Chrome_Extension |
Idiomas Suportados | 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" ] } |