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 là gì?

NETO POS Profit Margin Calculator là một tiện ích mở rộng Chrome được phát triển bởi berkan.yuksel25, và tính năng chính của nó là "This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng NETO POS Profit Margin Calculator

Tải xuống các tệp mở rộng NETO POS Profit Margin Calculator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên NETO POS Profit Margin Calculator NETO POS Profit Margin Calculator
ID elhpnbhaoamdcijpfpgaoiihdldphlli
URL Chính Thức https://chromewebstore.google.com/detail/neto-pos-profit-margin-ca/elhpnbhaoamdcijpfpgaoiihdldphlli
Mô tả This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.
Kích Thước Tệp 284 KB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2021-06-18
Ngày Phát Hành 2021-03-08
Nhà Phát Triển berkan.yuksel25
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
URL Trang Trợ Giúp https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
Ngôn Ngữ Được Hỗ Trợ 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
    }
}