Takeaway Hygiene Ratings UK
Adds Food Standard Agency ratings to popular takeaway sites.
Takeaway Hygiene Ratings UK là gì?
Takeaway Hygiene Ratings UK là một tiện ích mở rộng Chrome được phát triển bởi Richard Hodgson, và tính năng chính của nó là "Adds Food Standard Agency ratings to popular takeaway sites.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Takeaway Hygiene Ratings UK
Tải xuống các tệp mở rộng Takeaway Hygiene Ratings UK dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Looks up UK Food Standard Agency ratings for takeaways on popular online ordering services, and displays them on their restaurant pages. Currently supports: * Just Eat (just-eat.co.uk) * HungryHouse (hungryhouse.co.uk) * Deliveroo (deliveroo.co.uk) * Kukd (kukd.com) If you have suggestions for more sites, please let me know! Please note that some establishments don't use the same name on these sites that they use on the Food Standards Agency website. If it can't be found, a link to the Food Standards Agency search page is provided.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Takeaway Hygiene Ratings UK |
ID | bkmnhmkibfcgcddfkgmgnecchilhbgmi |
URL Chính Thức | https://chromewebstore.google.com/detail/takeaway-hygiene-ratings/bkmnhmkibfcgcddfkgmgnecchilhbgmi |
Mô tả | Adds Food Standard Agency ratings to popular takeaway sites. |
Kích Thước Tệp | 224 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 1.2.0 |
Cập Nhật Lần Cuối | 2017-07-16 |
Ngày Phát Hành | 2017-07-16 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Richard Hodgson |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Takeaway Hygiene Ratings UK", "short_name": "Food Hygiene", "version": "1.2.0", "description": "Adds Food Standard Agency ratings to popular takeaway sites.", "icons": { "16": "\/icons\/icon_16.png", "32": "\/icons\/icon_32.png", "64": "\/icons\/icon_64.png", "128": "\/icons\/icon_128.png", "256": "\/icons\/icon_256.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.just-eat.co.uk\/restaurants-*\/menu", "https:\/\/www.just-eat.co.uk\/restaurants-*\/menu#*", "https:\/\/www.just-eat.co.uk\/restaurants-*\/reviews", "https:\/\/www.just-eat.co.uk\/restaurants-*" ], "js": [ "jquery-3.2.1.min.js", "fsainsert.js" ], "css": [ "\/styles\/justeat.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/hungryhouse.co.uk\/*" ], "js": [ "jquery-3.2.1.min.js", "fsainsert.js" ], "css": [ "\/styles\/hungryhouse.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/deliveroo.co.uk\/*" ], "js": [ "jquery-3.2.1.min.js", "fsainsert.js" ], "css": [ "\/styles\/deliveroo.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.kukd.com\/restaurant\/*" ], "js": [ "jquery-3.2.1.min.js", "fsainsert.js" ], "css": [ "\/styles\/kukd.css" ], "run_at": "document_end" } ], "background": { "persistent": false, "scripts": [ "fsabg.js", "jquery-3.2.1.min.js" ] }, "permissions": [ "http:\/\/ratings.food.gov.uk\/*" ], "web_accessible_resources": [ "\/images\/ratings\/*" ] } |