Ocado Shopping Lists
Share shopping lists with friends and between Ocado accounts
什么是Ocado Shopping Lists?
Ocado Shopping Lists是由Jon Besga开发的Chrome扩展程序,该扩展的主要功能是“Share shopping lists with friends and between Ocado accounts”。
扩展截图
下载Ocado Shopping Lists扩展crx文件
下载Ocado Shopping Lists扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Ocado Shopping Lists |
ID | mffiildelfdhihlilflbmbhgolaoakni |
官方URL | https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni |
简介 | Share shopping lists with friends and between Ocado accounts |
文件大小 | 312 KB |
安装次数 | 351 |
当前版本 | 1.1 |
更新时间 | 2018-06-21 |
上架时间 | 2018-06-21 |
评分 | 3.50/5 共8次评分 |
开发者 | Jon Besga |
付费类型 | free |
支持的语言 | 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" ] } ] } |