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
公式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"
            ]
        }
    ]
}