PizzaFinder
Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
PizzaFinder क्या है?
PizzaFinder http://thewebminer.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PizzaFinder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |