PizzaFinder

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

Apa itu PizzaFinder?

PizzaFinder adalah ekstensi Chrome yang dikembangkan oleh http://thewebminer.com, dan fitur utamanya adalah "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi PizzaFinder

Unduh file ekstensi PizzaFinder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama PizzaFinder PizzaFinder
ID cplmmhjnpgajpohbjenpjgakhikembnp
URL Resmi https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp
Deskripsi Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
Ukuran File 150 KB
Jumlah Instalasi 33
Versi Saat Ini 1.2
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 4.40/5 Total 5 Penilaian
Pengembang http://thewebminer.com
Tipe Pembayaran free
Situs Ekstensi http://thewebminer.com/contact
Bahasa yang Didukung 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"
    ]
}