PizzaFinder
Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
PizzaFinder란 무엇입니까?
PizzaFinder은(는) http://thewebminer.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website"입니다.
확장 프로그램 스크린샷
PizzaFinder 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Pizza Finder helps you to find appropriate pizza on a page with a lot of pizza with many variations. Pizza Finder highlights the recommended type of pizza based on your preferred ingredients. Just add preferred ingredients and you will see HIGHLIGHTED best pizza for you.
확장 프로그램 기본 정보
이름 | |
ID | cplmmhjnpgajpohbjenpjgakhikembnp |
공식 URL | https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp |
설명 | Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website |
파일 크기 | 150 KB |
설치 횟수 | 33 |
현재 버전 | 1.2 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 4.40/5 총 5 개의 평점 |
개발자 | http://thewebminer.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://thewebminer.com/contact |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PizzaFinder", "description": "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website", "version": "1.2", "icons": { "16": "logo_16.png", "48": "logo_48.png", "128": "logo_128.png" }, "browser_action": { "default_icon": "logo_16.png", "default_popup": "main.htm" }, "background": { "scripts": [ "background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js", "jquery.js", "bootstrap.min.js" ] } ], "permissions": [ "activeTab", "storage" ] } |