Takeaway Hygiene Ratings UK

Adds Food Standard Agency ratings to popular takeaway sites.

Takeaway Hygiene Ratings UK क्या है?

Takeaway Hygiene Ratings UK Richard Hodgson द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds Food Standard Agency ratings to popular takeaway sites."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Takeaway Hygiene Ratings UK एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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\/*"
    ]
}