Repibox - Recipe Viewer Extension
Automatically find recipes on cluttered sites. Repibox puts the recipe in a nifty popup at the top of the page.
Repibox - Recipe Viewer Extension란 무엇입니까?
Repibox - Recipe Viewer Extension은(는) https://repibox.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically find recipes on cluttered sites. Repibox puts the recipe in a nifty popup at the top of the page."입니다.
확장 프로그램 스크린샷
Repibox - Recipe Viewer Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Repibox recipe extension for chrome helps you instantly jump to the recipe. Repibox will detect if a page contains a recipe and will automatically display the ingredients and instructions at the top of the page so that you can cook distraction free. Furthermore, you can use Repibox to find related recipes, print with pretty formatting, or send the recipe to your phone. Skip straight to the recipe with Repibox. Terms of Service & Privacy: By installing the Repibox extension, you agree to our Terms of Service & Privacy Policy https://github.com/repibox/legal Repibox is not an ad-blocker and advertisements will still load on the page. By using Repibox, you agree to only use Repibox for personal, non-commercial use, and will not distribute recipes. Filter straight to the recipe with https://repibox.com .
확장 프로그램 기본 정보
이름 | |
ID | nbgpmjdmplldckdiolbacdflmebgnoij |
공식 URL | https://chromewebstore.google.com/detail/repibox-recipe-viewer-ext/nbgpmjdmplldckdiolbacdflmebgnoij |
설명 | Automatically find recipes on cluttered sites. Repibox puts the recipe in a nifty popup at the top of the page. |
파일 크기 | 2.22 MB |
설치 횟수 | 1,265 |
현재 버전 | 0.0.39 |
최근 업데이트 | 2021-12-10 |
출시 날짜 | 2021-01-11 |
평점 | 5.00/5 총 31 개의 평점 |
개발자 | https://repibox.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://repibox.com |
개인정보 보호 정책 페이지 URL | https://github.com/repibox/legal/blob/master/Privacy-Policy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Repibox - Recipe Viewer Extension", "short_name": "Repibox", "description": "Automatically find recipes on cluttered sites. Repibox puts the recipe in a nifty popup at the top of the page.", "version": "0.0.39", "icons": { "128": "img\/icon-128.png" }, "permissions": [ "*:\/\/*.larecipe.com\/*", "*:\/\/*.repibox.com\/*", "*:\/\/repibox.com\/*" ], "optional_permissions": [ "storage" ], "browser_action": { "default_title": "Repibox", "default_icon": "img\/disabled-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "css": [ "css\/cleanslate.css", "css\/main.css" ], "js": [ "js\/lib\/jquery-3.1.0.min.js", "js\/lib\/jquery.microdata.js", "js\/lib\/jquery.microdata.json.js", "js\/lib\/jsHashes-1.07-hashes.js", "js\/lib\/clipboard-2.0.6.min.js", "js\/lib\/lz-string.min.js", "js\/lib\/jquery.qrcode.min.js", "js\/global.js", "js\/global-fg.js", "js\/helpers.js", "js\/models\/RecipeSection.js", "js\/models\/KeyNodes.js", "js\/models\/Recipe.js", "js\/send2device.js", "js\/webapp-connect.js", "js\/content.js" ] } ], "background": { "scripts": [ "js\/global.js", "js\/background.js" ], "persistent": true }, "web_accessible_resources": [ "fonts\/*.ttf", "img\/*", "css\/main.css", "options.html", "html\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |