CibuSplitter
CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards.
CibuSplitter란 무엇입니까?
CibuSplitter은(는) Dekel Braunstein에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CibuSplitter is a chrome extension intended to split group-order created in wolt to multiple Cibus cards."입니다.
확장 프로그램 스크린샷
CibuSplitter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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?*" ] } } |