NETO POS Profit Margin Calculator

This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.

NETO POS Profit Margin Calculatorとは何ですか?

NETO POS Profit Margin Calculatorはberkan.yuksel25によって開発されたChromeの拡張機能で、その主な機能は「This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

NETO POS Profit Margin Calculator拡張機能のCRXファイルをダウンロード

NETO POS Profit Margin Calculator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        A free, open-source Chrome extension to help you with your NETO POS experience.

This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order and a NETO backend sales order.

Simply select the products your customer is purchasing and add it to the sale screen. Then, click the extension icon to fetch a real-time gross profit margin percentage on your entire order.

Sometimes, cost prices may be missing in your products. In this case, the extension provides an accuracy status of the calculation.

Setup only takes your NETO API settings, so product cost prices can be fetched from your store's inventory system.                    

拡張機能の基本情報

名前 NETO POS Profit Margin Calculator NETO POS Profit Margin Calculator
ID elhpnbhaoamdcijpfpgaoiihdldphlli
公式URL https://chromewebstore.google.com/detail/neto-pos-profit-margin-ca/elhpnbhaoamdcijpfpgaoiihdldphlli
説明 This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.
ファイルサイズ 284 KB
インストール数 26
現在のバージョン 1.0.1
最終更新日 2021-06-18
公開日 2021-03-08
開発者 berkan.yuksel25
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
ヘルプページのURL https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NETO POS Profit Margin Calculator",
    "description": "This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.",
    "version": "1.0.1",
    "author": "Berkan Yuksel",
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "images\/icon_128.png",
        "64": "images\/icon_64.png",
        "32": "images\/icon_32.png",
        "16": "images\/icon_16.png"
    },
    "browser_action": {
        "default_icon": "images\/icon_128.png",
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "pages\/options.html",
        "open_in_tab": false
    }
}