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
What is NYC Restaurant Health Inspection Letter Grade?
NYC Restaurant Health Inspection Letter Grade is a Chrome extension developed by Carlos Cuevas, and its main feature is "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable".
Extension Screenshots
Download NYC Restaurant Health Inspection Letter Grade Extension CRX File
Download NYC Restaurant Health Inspection Letter Grade extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | NYC Restaurant Health Inspection Letter Grade |
ID | bacfbpocnejcaffinbjkikinkmhkdlid |
Official URL | https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid |
Description | Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable |
File Size | 61.01 KB |
Installation Count | 104 |
Current Version | 0.7.2 |
Last Updated | 2021-06-17 |
Publish Date | 2020-02-16 |
Rating | 5.00/5 Total 5 Ratings |
Developer | Carlos Cuevas |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension |
Supported Languages | 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" ] } |