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

Cos'è NYC Restaurant Health Inspection Letter Grade?

NYC Restaurant Health Inspection Letter Grade è un'estensione di Chrome sviluppata da Carlos Cuevas, e la sua funzione principale è "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione NYC Restaurant Health Inspection Letter Grade

Scarica i file di estensione NYC Restaurant Health Inspection Letter Grade 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

                        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).                    

Informazioni di Base sull'Estensione

Nome NYC Restaurant Health Inspection Letter Grade NYC Restaurant Health Inspection Letter Grade
ID bacfbpocnejcaffinbjkikinkmhkdlid
URL Ufficiale https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid
Descrizione Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable
Dimensione del File 61.01 KB
Conteggio Installazioni 104
Versione Corrente 0.7.2
Ultimo Aggiornamento 2021-06-17
Data di Pubblicazione 2020-02-16
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore Carlos Cuevas
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension
Lingue Supportate 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"
    ]
}