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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will calculate real-time gross profit margins of multiple products in a NETO POS sales order."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में NETO POS Profit Margin Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}