Reciplay
The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.
Reciplay란 무엇입니까?
Reciplay은(는) https://getreciplay.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web."입니다.
확장 프로그램 스크린샷
Reciplay 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The best cookbook is the one curated by you. Reciplay makes that happen by saving and organizing the great recipes that you find on the web. All the recipes you love are at your fingertips with Reciplay. The extension works by grabbing key recipe information like ingredients, directions, servings, cook time, prep time, and images from the web page and saving all of that to your account where you can pull it back up at any time in an easy-to-read format that is perfect for busy kitchen work.
확장 프로그램 기본 정보
이름 | |
ID | lgniekfeiencebkkiclfiaonjinflhca |
공식 URL | https://chrome.google.com/webstore/detail/reciplay/lgniekfeiencebkkiclfiaonjinflhca |
설명 | The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web. |
파일 크기 | 27.38 KB |
설치 횟수 | 47 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2021-07-18 |
출시 날짜 | 2020-04-14 |
개발자 | https://getreciplay.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://getreciplay.com/ |
도움말 페이지 URL | https://getreciplay.com/support |
개인정보 보호 정책 페이지 URL | https://getreciplay.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reciplay", "description": "The best cookbook is the one curated by you. Reciplay makes that happen by allowing you to save recipes you find on the web.", "version": "1.0.2", "permissions": [ "activeTab", "storage", "https:\/\/getreciplay.com\/*", "https:\/\/resources.getreciplay.com\/*", "https:\/\/api2.getreciplay.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' https:\/\/api2.getreciplay.com; object-src 'self'", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "browser_action": { "default_title": "Save to Reciplay" }, "web_accessible_resources": [ "content.css", "logo.png" ], "options_ui": { "page": "settings.html", "open_in_tab": true }, "applications": { "gecko": { "id": "[email protected]" } }, "externally_connectable": { "matches": [ "https:\/\/app.getreciplay.com\/*" ] } } |