Ocado Shopping Lists

Share shopping lists with friends and between Ocado accounts

Qu'est-ce que Ocado Shopping Lists ?

Ocado Shopping Lists est une extension Chrome développée par Jon Besga, et sa fonction principale est "Share shopping lists with friends and between Ocado accounts".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ocado Shopping Lists

Téléchargez les fichiers d'extension Ocado Shopping Lists au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Ocado Shopping Lists Ocado Shopping Lists
ID mffiildelfdhihlilflbmbhgolaoakni
URL Officiel https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni
Description Share shopping lists with friends and between Ocado accounts
Taille du Fichier 312 KB
Nombre d'Installations 351
Version Actuelle 1.1
Dernière Mise à Jour 2018-06-21
Date de Publication 2018-06-21
Évaluation 3.50/5 Total 8 Évaluations
Développeur Jon Besga
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}