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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |