PizzaFinder

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

O que é PizzaFinder?

PizzaFinder é uma extensão do Chrome desenvolvida por http://thewebminer.com, e sua principal característica é "Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PizzaFinder

Baixe arquivos de extensão PizzaFinder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PizzaFinder PizzaFinder
ID cplmmhjnpgajpohbjenpjgakhikembnp
URL Oficial https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp
Descrição Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
Tamanho do Arquivo 150 KB
Contagem de Instalações 33
Versão Atual 1.2
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 4.40/5 Total de 5 Avaliações
Desenvolvedor http://thewebminer.com
Tipo de Pagamento free
Site da Extensão http://thewebminer.com/contact
Idiomas Suportados 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"
    ]
}