Show Me The Recipe!
Skip the life story on recipe blogs and get what you came for - the recipe!
Show Me The Recipe!란 무엇입니까?
Show Me The Recipe!은(는) pgosh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Skip the life story on recipe blogs and get what you came for - the recipe!"입니다.
확장 프로그램 스크린샷
Show Me The Recipe! 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The 'Adblock' for recipe blogs! When you just need to know how many eggs, but don't want to read about the divorce. This extension finds the actual recipe on many* popular recipe blogs, and brings it to the top of the page - no more scrolling to the bottom to get what you came for. Think the author's blog post should take precedence over the recipe? Don't install this extension. SUPPORT: Recipe isn't above the blog as promised? Something else went wrong? Contact the support email below and we'll fix it ASAP * Please note: We are working on getting as many to work as possible, but some sites can't be affected for technical reasons. Let us know and we'll do our best!
확장 프로그램 기본 정보
이름 | Show Me The Recipe! |
ID | bchinpknmmmhblibnjgckcbicajcddni |
공식 URL | https://chromewebstore.google.com/detail/show-me-the-recipe/bchinpknmmmhblibnjgckcbicajcddni |
설명 | Skip the life story on recipe blogs and get what you came for - the recipe! |
파일 크기 | 27.18 KB |
설치 횟수 | 145 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2022-09-28 |
출시 날짜 | 2018-02-12 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | pgosh |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Me The Recipe!", "description": "Skip the life story on recipe blogs and get what you came for - the recipe!", "version": "1.1.1", "author": "Peter Goshulak", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [], "browser_action": { "default_icon": "icons\/icon16.png", "default_title": "Show Me The Recipe! ENABLED" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "css": [ "style.css" ], "js": [ "selectors.js", "content.js" ] } ] } |