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.”。

擴展截圖

screenshot

下載CibuSplitter擴展crx文件

下載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 CibuSplitter
ID lfklmmalkllmjckblbmbcnhinllbhebl
官方網址 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?*"
        ]
    }
}