NETO POS Profit Margin Calculator

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

O que é NETO POS Profit Margin Calculator?

NETO POS Profit Margin Calculator é uma extensão do Chrome desenvolvida por berkan.yuksel25, e sua principal característica é "This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão NETO POS Profit Margin Calculator

Baixe arquivos de extensão NETO POS Profit Margin Calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome NETO POS Profit Margin Calculator NETO POS Profit Margin Calculator
ID elhpnbhaoamdcijpfpgaoiihdldphlli
URL Oficial https://chromewebstore.google.com/detail/neto-pos-profit-margin-ca/elhpnbhaoamdcijpfpgaoiihdldphlli
Descrição This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order.
Tamanho do Arquivo 284 KB
Contagem de Instalações 26
Versão Atual 1.0.1
Última Atualização 2021-06-18
Data de Publicação 2021-03-08
Desenvolvedor berkan.yuksel25
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
URL da Página de Ajuda https://github.com/BerkanYuksel25/NETO-POS-Profit-Margin-Calculator
Idiomas Suportados 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
    }
}