NYC Restaurant Health Inspection Letter Grade

Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable

Co to jest NYC Restaurant Health Inspection Letter Grade?

NYC Restaurant Health Inspection Letter Grade to rozszerzenie Chrome opracowane przez Carlos Cuevas, a jego główną funkcją jest „Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia NYC Restaurant Health Inspection Letter Grade

Pobierz pliki rozszerzeń NYC Restaurant Health Inspection Letter Grade 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

                        Displays the health inspection letter grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, and Opentable.  Shows the same card that restaurants display in their windows.

Unlike other extensions, this uses NYC's live data (updated daily). It also accounts for restaurants closed down by NYC Health Dept.  And it's open source!

Please report any issues in the Support tab.

Grubhub and Seamless lie about phone numbers so the results won't be as accurate as they are on other sites (e.g. Yelp).                    

Podstawowe informacje o rozszerzeniu

Nazwa NYC Restaurant Health Inspection Letter Grade NYC Restaurant Health Inspection Letter Grade
ID bacfbpocnejcaffinbjkikinkmhkdlid
Oficjalny URL https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid
Opis Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable
Rozmiar pliku 61.01 KB
Liczba instalacji 104
Aktualna Wersja 0.7.2
Ostatnia Aktualizacja 2021-06-17
Data Publikacji 2020-02-16
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper Carlos Cuevas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NYC Restaurant Health Inspection Letter Grade",
    "description": "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable",
    "version": "0.7.2",
    "homepage_url": "https:\/\/github.com\/CarlosCuevas",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.yelp.com\/biz\/*",
                "*:\/\/*.menupages.com\/*",
                "*:\/\/*.opentable.com\/*",
                "*:\/\/*.grubhub.com\/*",
                "*:\/\/*.seamless.com\/*",
                "*:\/\/*.ubereats.com\/*",
                "*:\/\/*.slicelife.com\/*"
            ],
            "css": [
                "inspectionStyles.css"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "images\/*.png"
    ]
}