NETO POS Profit Margin Calculator

NETO POS Profit Margin Calculator

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

Merlin
Additional files are visible only to premium users

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": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "64": "images/icon_64.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": "images/icon_128.png",
    "default_popup": "pages/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "pages/options.html",
    "open_in_tab": false
  }
}