Ocado Shopping Lists

Share shopping lists with friends and between Ocado accounts

Ocado Shopping Listsคืออะไร?

Ocado Shopping Lists เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jon Besga และคุณลักษณะหลักของมันคือ "Share shopping lists with friends and between Ocado accounts"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ocado Shopping Lists

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

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

                        Ocado by default doesn't allow to share shopping list between accounts, with this extension you can export a shopping list and import it into another Ocado account. Share shopping list with Ocado!

- Go inside a shopping list in Ocado and select the button Export Shopping List.
- Change your Ocado account
- Select the button Import Shopping List
- Refresh the page. The trolley should have now all the items of the shopping list you exported in the previous Ocado account, now you can save the trolley as a new list.                    

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

ชื่อ Ocado Shopping Lists Ocado Shopping Lists
ID mffiildelfdhihlilflbmbhgolaoakni
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni
คำอธิบาย Share shopping lists with friends and between Ocado accounts
ขนาดไฟล์ 312 KB
จำนวนการติดตั้ง 351
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2018-06-21
วันที่เผยแพร่ 2018-06-21
คะแนน 3.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Jon Besga
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ocado Shopping Lists",
    "description": "Share shopping lists with friends and between Ocado accounts",
    "version": "1.1",
    "author": "Jon Besga",
    "icons": {
        "16": "icons\/ocado-16.png",
        "48": "icons\/ocado-48.png",
        "128": "icons\/ocado-128.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.ocado.com\/*",
                "http:\/\/*.ocado.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}