PizzaFinder

Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website

PizzaFinderคืออะไร?

PizzaFinder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://thewebminer.com และคุณลักษณะหลักของมันคือ "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PizzaFinder

ดาวน์โหลดไฟล์ส่วนขยาย PizzaFinder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PizzaFinder PizzaFinder
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"
    ]
}