Takeaway Hygiene Ratings UK

Adds Food Standard Agency ratings to popular takeaway sites.

什麼是Takeaway Hygiene Ratings UK?

Takeaway Hygiene Ratings UK是由Richard Hodgson開發的Chrome擴展程式,該擴展的主要功能是“Adds Food Standard Agency ratings to popular takeaway sites.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Takeaway Hygiene Ratings UK擴展crx文件

下載Takeaway Hygiene Ratings UK擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Takeaway Hygiene Ratings UK Takeaway Hygiene Ratings UK
ID bkmnhmkibfcgcddfkgmgnecchilhbgmi
官方網址 https://chromewebstore.google.com/detail/takeaway-hygiene-ratings/bkmnhmkibfcgcddfkgmgnecchilhbgmi
簡介 Adds Food Standard Agency ratings to popular takeaway sites.
檔案大小 224 KB
安裝次數 25
目前版本 1.2.0
更新時間 2017-07-16
上架時間 2017-07-16
評分 3.33/5 共 3 次評分
開發者 Richard Hodgson
付費類型 free
支援的語言 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\/*"
    ]
}