CibuSplitter
CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards.
Что такое CibuSplitter?
CibuSplitter - это расширение Chrome, разработанное Dekel Braunstein, и его основная функция - "CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards.".
Снимки экрана расширения
Скачать файл CRX расширения CibuSplitter
Скачайте файлы расширений CibuSplitter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When people order food in Wolt and use the "group-order" feature - if they want to pay using Cibus card - once the payment process transfer to the Cibus website, they need to manually split the bill between the people inside the group-order. Using this extension - the bill will automatically split between the people that are part of the Wolt-order, and also make sure that the shipping cost will split based on the price each person should pay. The extension also gives an option to save a conversion table between the Wolt display name and the Cibus display name in order to match between the two. Source code and more instructions for this extension are available under https://github.com/dekelb/cibusplitter Feel free to report bugs or request new features
Основная информация о расширении
Название | CibuSplitter |
ID | lfklmmalkllmjckblbmbcnhinllbhebl |
Официальный URL | https://chromewebstore.google.com/detail/cibusplitter/lfklmmalkllmjckblbmbcnhinllbhebl |
Описание | CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards. |
Размер файла | 26.19 KB |
Количество установок | 176 |
Текущая Версия | 0.1.4 |
Последнее Обновление | 2021-09-11 |
Дата публикации | 2021-08-25 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Dekel Braunstein |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CibuSplitter", "description": "CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards.", "version": "0.1.4", "manifest_version": 3, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "https:\/\/wolt.com\/*", "https:\/\/www.mysodexo.co.il\/Auth.aspx?*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/favicon.png", "32": "\/images\/favicon.png", "48": "\/images\/favicon.png", "128": "\/images\/favicon.png" } }, "icons": { "16": "\/images\/favicon.png", "32": "\/images\/favicon.png", "48": "\/images\/favicon.png", "128": "\/images\/favicon.png" }, "content_scripts": [ { "matches": [ "https:\/\/wolt.com\/*", "https:\/\/www.mysodexo.co.il\/Auth.aspx?*" ], "js": [ "injector.js" ], "run_at": "document_start", "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "content.js" ], "matches": [ "https:\/\/wolt.com\/*" ] }, { "resources": [ "sibus-content.js" ], "matches": [ "https:\/\/www.mysodexo.co.il\/*" ] } ], "externally_connectable": { "matches": [ "https:\/\/wolt.com\/*", "https:\/\/www.mysodexo.co.il\/Auth.aspx?*" ] } } |