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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
    }
}