Recipe Filter
Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.
Recipe Filter란 무엇입니까?
Recipe Filter은(는) Seansoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup."입니다.
확장 프로그램 스크린샷
Recipe Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension will detect recipes on any page you visit and will highlight them at the top of the page. Easy! No more hunting for the actual recipe when you visit a long-winded food blog! You can turn it off for specific sites if you find it's not needed and edit the blacklist under "Options" when you right-click the green Recipe Filter icon in your toolbar. This is an open source project: https://github.com/sean-public/RecipeFilter
확장 프로그램 기본 정보
이름 | Recipe Filter |
ID | ahlcdjbkdaegmljnnncfnhiioiadakae |
공식 URL | https://chromewebstore.google.com/detail/recipe-filter/ahlcdjbkdaegmljnnncfnhiioiadakae |
설명 | Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup. |
파일 크기 | 12.64 KB |
설치 횟수 | 56,805 |
현재 버전 | 0.3 |
최근 업데이트 | 2020-06-13 |
출시 날짜 | 2020-06-13 |
평점 | 4.84/5 총 192 개의 평점 |
개발자 | Seansoft |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sean-public/RecipeFilter |
도움말 페이지 URL | https://github.com/sean-public/RecipeFilter |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Recipe Filter", "short_name": "Recipe Filter", "version": "0.3", "description": "Recipe Filter seeks out recipes buried in pages and shows them to you in a handy popup.", "icons": { "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "options_page": "html\/options.html", "browser_action": { "default_title": "Recipe Filter", "default_icon": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/recipe_filter.css" ], "js": [ "js\/main.js" ] } ] } |