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
NYC Restaurant Health Inspection Letter Grade란 무엇입니까?
NYC Restaurant Health Inspection Letter Grade은(는) Carlos Cuevas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable"입니다.
확장 프로그램 스크린샷
NYC Restaurant Health Inspection Letter Grade 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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).
확장 프로그램 기본 정보
이름 | NYC Restaurant Health Inspection Letter Grade |
ID | bacfbpocnejcaffinbjkikinkmhkdlid |
공식 URL | https://chromewebstore.google.com/detail/nyc-restaurant-health-ins/bacfbpocnejcaffinbjkikinkmhkdlid |
설명 | Show health inspection grade for restaurants in New York City on Uber Eats, Yelp, Grubhub, Seamless, Slice, Menupages, & Opentable |
파일 크기 | 61.01 KB |
설치 횟수 | 104 |
현재 버전 | 0.7.2 |
최근 업데이트 | 2021-06-17 |
출시 날짜 | 2020-02-16 |
평점 | 5.00/5 총 5 개의 평점 |
개발자 | Carlos Cuevas |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/CarlosCuevas/nyc-health-inspection-letter-grade-chrome-extension |
지원되는 언어 | 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" ] } |