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

¿Qué es NYC Restaurant Health Inspection Letter Grade?

NYC Restaurant Health Inspection Letter Grade es una extensión de Chrome desarrollada por Carlos Cuevas, y su función principal es "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión NYC Restaurant Health Inspection Letter Grade

Descarga archivos de extensión NYC Restaurant Health Inspection Letter Grade en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre NYC Restaurant Health Inspection Letter Grade NYC Restaurant Health Inspection Letter Grade
ID bacfbpocnejcaffinbjkikinkmhkdlid
URL Oficial https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid
Descripción Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable
Tamaño del Archivo 61.01 KB
Cantidad de Instalaciones 104
Versión Actual 0.7.2
Última Actualización 2021-06-17
Fecha de Publicación 2020-02-16
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador Carlos Cuevas
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension
Idiomas Soportados 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"
    ]
}