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 |
官方網址 | 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" ] } |