Ocado Shopping Lists
Share shopping lists with friends and between Ocado accounts
Vad är Ocado Shopping Lists?
Ocado Shopping Lists är en Chrome-tillägg utvecklad av Jon Besga, och dess huvudfunktion är "Share shopping lists with friends and between Ocado accounts".
Tilläggsskärmbilder
Ladda ner Ocado Shopping Lists-förlängningens CRX-fil
Ladda ner Ocado Shopping Lists-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Ocado Shopping Lists |
ID | mffiildelfdhihlilflbmbhgolaoakni |
Officiell webbadress | https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni |
Beskrivning | Share shopping lists with friends and between Ocado accounts |
Filstorlek | 312 KB |
Antal Installationer | 351 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2018-06-21 |
Publiceringsdatum | 2018-06-21 |
Betyg | 3.50/5 Totalt 8 Betyg |
Utvecklare | Jon Besga |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |