Ocado Shopping Lists
Share shopping lists with friends and between Ocado accounts
What is Ocado Shopping Lists?
Ocado Shopping Lists is a Chrome extension developed by Jon Besga, and its main feature is "Share shopping lists with friends and between Ocado accounts".
Extension Screenshots
Download Ocado Shopping Lists Extension CRX File
Download Ocado Shopping Lists extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Ocado Shopping Lists |
ID | mffiildelfdhihlilflbmbhgolaoakni |
Official URL | https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni |
Description | Share shopping lists with friends and between Ocado accounts |
File Size | 312 KB |
Installation Count | 351 |
Current Version | 1.1 |
Last Updated | 2018-06-21 |
Publish Date | 2018-06-21 |
Rating | 3.50/5 Total 8 Ratings |
Developer | Jon Besga |
Payment Type | free |
Supported Languages | 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" ] } ] } |