Takeaway Scores on the Doors

Shows the Scores on the Doors rating next to each takeaway restaurant for JUST EAT and Deliveroo.

Takeaway Scores on the Doorsคืออะไร?

Takeaway Scores on the Doors เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anargyros Akrivos และคุณลักษณะหลักของมันคือ "Shows the Scores on the Doors rating next to each takeaway restaurant for JUST EAT and Deliveroo."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Takeaway Scores on the Doors

ดาวน์โหลดไฟล์ส่วนขยาย Takeaway Scores on the Doors ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a Google Chrome Extension for displaying Scores on the Doors on JUST EAT and Deliveroo.

Clicking on the rating image gets you to the Food Standards Agency record for that restaurant.

- Uses Food Hygiene Rating Scheme Application Programming Interface (FHRS API) to fetch the rating for each restaurant based on the business postcode and name.
- Uses fuzzyset.js to analyse the similarities in restaurant names in case of mismatching.

Please note that this extension is not perfect and sometimes there might be some inaccuracies, if the data do not agree on both sides. That might mean, a business has changed location or name, but hasn't updated the records yet. Also, some restaurants might use a slightly different name on each takeaway to potentially attract customers, which could lead to mismatches.

Source code: https://github.com/argyakrivos/takeaway_scores_on_the_doors

*** Version 2.0.0

  - Added support for Deliveroo Scores on the Doors
  - Renamed the extension to Takeaway Scores on the Doors
  - Added rating on the restaurant page for JUST EAT
  - Minor bug fixes

*** Version 1.1.0

  - Improved accuracy of results by looking for nearby restaurants in case postcode does not match
  - Minor performance improvements

*** Version 1.0.0

  - First app release
  - Support for JUST EAT Scores on the Doors                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Takeaway Scores on the Doors Takeaway Scores on the Doors
ID cgfblelihkaeaeliedhajkmjllcehbdp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/takeaway-scores-on-the-do/cgfblelihkaeaeliedhajkmjllcehbdp
คำอธิบาย Shows the Scores on the Doors rating next to each takeaway restaurant for JUST EAT and Deliveroo.
ขนาดไฟล์ 585 KB
จำนวนการติดตั้ง 61
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2018-04-01
วันที่เผยแพร่ 2018-04-01
คะแนน 4.20/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา Anargyros Akrivos
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Takeaway Scores on the Doors",
    "version": "2.0.0",
    "author": "Anargyros Akrivos",
    "description": "Shows the Scores on the Doors rating next to each takeaway restaurant for JUST EAT and Deliveroo.",
    "icons": {
        "16": "images\/icons\/icon16.png",
        "32": "images\/icons\/icon32.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/jquery.js",
            "js\/fuzzyset.js",
            "js\/event_page.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "js\/jquery.js",
                "js\/inject.js"
            ],
            "css": [
                "css\/styles.css"
            ],
            "matches": [
                "https:\/\/www.just-eat.co.uk\/*",
                "https:\/\/deliveroo.co.uk\/*"
            ]
        }
    ],
    "permissions": [
        "http:\/\/api.ratings.food.gov.uk\/*",
        "https:\/\/api.postcodes.io\/postcodes\/*"
    ],
    "web_accessible_resources": [
        "images\/scores\/*"
    ]
}