PizzaFinder
Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
PizzaFinder là gì?
PizzaFinder là một tiện ích mở rộng Chrome được phát triển bởi http://thewebminer.com, và tính năng chính của nó là "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PizzaFinder
Tải xuống các tệp mở rộng PizzaFinder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | cplmmhjnpgajpohbjenpjgakhikembnp |
URL Chính Thức | https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp |
Mô tả | Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website |
Kích Thước Tệp | 150 KB |
Số Lần Cài Đặt | 33 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Đánh Giá | 4.40/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | http://thewebminer.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://thewebminer.com/contact |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |