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
O que é NYC Restaurant Health Inspection Letter Grade?
NYC Restaurant Health Inspection Letter Grade é uma extensão do Chrome desenvolvida por Carlos Cuevas, e sua principal característica é "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão NYC Restaurant Health Inspection Letter Grade
Baixe arquivos de extensão NYC Restaurant Health Inspection Letter Grade 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
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).
Informações Básicas da Extensão
Nome | NYC Restaurant Health Inspection Letter Grade |
ID | bacfbpocnejcaffinbjkikinkmhkdlid |
URL Oficial | https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid |
Descrição | Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable |
Tamanho do Arquivo | 61.01 KB |
Contagem de Instalações | 104 |
Versão Atual | 0.7.2 |
Última Atualização | 2021-06-17 |
Data de Publicação | 2020-02-16 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | Carlos Cuevas |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension |
Idiomas Suportados | 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" ] } |