PizzaFinder

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

Co to jest PizzaFinder?

PizzaFinder to rozszerzenie Chrome opracowane przez http://thewebminer.com, a jego główną funkcją jest „Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PizzaFinder

Pobierz pliki rozszerzeń PizzaFinder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PizzaFinder PizzaFinder
ID cplmmhjnpgajpohbjenpjgakhikembnp
Oficjalny URL https://chrome.google.com/webstore/detail/pizzafinder/cplmmhjnpgajpohbjenpjgakhikembnp
Opis Pizza Finder extension helps you to find a pizza in the menu page on any food delivery website
Rozmiar pliku 150 KB
Liczba instalacji 33
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 4.40/5 Łącznie 5 Oceny
Deweloper http://thewebminer.com
Typ Płatności free
Strona Rozszerzenia http://thewebminer.com/contact
Obsługiwane Języki 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"
    ]
}