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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
            ]
        }
    ]
}