Ocado Shopping Lists
Share shopping lists with friends and between Ocado accounts
Hvad er Ocado Shopping Lists?
Ocado Shopping Lists er en Chrome-udvidelse udviklet af Jon Besga, og dens hovedfunktion er "Share shopping lists with friends and between Ocado accounts".
Udvidelsesskærmbilleder
Download Ocado Shopping Lists-udvidelses-CRX-fil
Download Ocado Shopping Lists-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | mffiildelfdhihlilflbmbhgolaoakni |
| Officiel URL | https://chromewebstore.google.com/detail/ocado-shopping-lists/mffiildelfdhihlilflbmbhgolaoakni |
| Beskrivelse | Share shopping lists with friends and between Ocado accounts |
| Filstørrelse | 312 KB |
| Antal Installationer | 351 |
| Nuværende Version | 1.1 |
| Senest Opdateret | 2018-06-21 |
| Udgivelsesdato | 2018-06-21 |
| Bedømmelse | 3.50/5 Samlet 8 Bedømmelser |
| Udvikler | Jon Besga |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
]
}
]
} | |