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”。

擴展截圖

screenshot

下載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 Ocado Shopping Lists
ID mffiildelfdhihlilflbmbhgolaoakni
官方網址 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"
            ]
        }
    ]
}