PizzaFinder

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

Cos'è PizzaFinder?

PizzaFinder è un'estensione di Chrome sviluppata da http://thewebminer.com, e la sua funzione principale è "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PizzaFinder

Scarica i file di estensione PizzaFinder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PizzaFinder PizzaFinder
ID cplmmhjnpgajpohbjenpjgakhikembnp
URL Ufficiale https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp
Descrizione Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
Dimensione del File 150 KB
Conteggio Installazioni 33
Versione Corrente 1.2
Ultimo Aggiornamento 2019-03-08
Data di Pubblicazione 2019-03-08
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore http://thewebminer.com
Tipo di Pagamento free
Sito Web dell'Estensione http://thewebminer.com/contact
Lingue Supportate 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"
    ]
}