Ocado Shopping Lists

Share shopping lists with friends and between Ocado accounts

Co je Ocado Shopping Lists?

Ocado Shopping Lists je rozšíření Chrome vyvinuté Jon Besga, a jeho hlavní funkcí je „Share shopping lists with friends and between Ocado accounts“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Ocado Shopping Lists

Stáhněte si soubory rozšíření Ocado Shopping Lists ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Ocado Shopping Lists Ocado Shopping Lists
ID mffiildelfdhihlilflbmbhgolaoakni
Oficiální URL https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni
Popis Share shopping lists with friends and between Ocado accounts
Velikost souboru 312 KB
Počet instalací 351
Aktuální Verze 1.1
Poslední Aktualizace 2018-06-21
Datum Vydání 2018-06-21
Hodnocení 3.50/5 Celkem 8 Hodnocení
Vývojář Jon Besga
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}