Ocado Shopping Lists
Share shopping lists with friends and between Ocado accounts
O que é Ocado Shopping Lists?
Ocado Shopping Lists é uma extensão do Chrome desenvolvida por Jon Besga, e sua principal característica é "Share shopping lists with friends and between Ocado accounts".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Ocado Shopping Lists
Baixe arquivos de extensão Ocado Shopping Lists no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Ocado Shopping Lists |
ID | mffiildelfdhihlilflbmbhgolaoakni |
URL Oficial | https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni |
Descrição | Share shopping lists with friends and between Ocado accounts |
Tamanho do Arquivo | 312 KB |
Contagem de Instalações | 351 |
Versão Atual | 1.1 |
Última Atualização | 2018-06-21 |
Data de Publicação | 2018-06-21 |
Classificação | 3.50/5 Total de 8 Avaliações |
Desenvolvedor | Jon Besga |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |