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ファイルをダウンロード
NYC Restaurant Health Inspection Letter Grade拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" ] } |