Profit Calc

profit calc extension

What is Profit Calc?

Profit Calc is a Chrome extension developed by profitcalcapp, and its main feature is "profit calc extension".

Extension Screenshots

screenshot

Download Profit Calc Extension CRX File

Download Profit Calc extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        The Profit Calc Chrome Extension is to be used with the Profit Calc Shopify app. This extensions lets users send their aliexpress order information as COGS so they can filter it by date. Please visit the Shopify App store for our full shopify app.                    

Extension Basic Information

Name Profit Calc Profit Calc
ID jgdppdfjmgeelomofklppldcemjmmlkn
Official URL https://chromewebstore.google.com/detail/profit-calc/jgdppdfjmgeelomofklppldcemjmmlkn
Description profit calc extension
File Size 161 KB
Installation Count 332
Current Version 3.0
Last Updated 2024-01-30
Publish Date 2020-06-22
Developer profitcalcapp
Email [email protected]
Payment Type free
Extension Website https://www.profitcalc.io/
Help Page URL https://www.profitcalc.io/
Privacy Policy Page URL https://www.profitcalc.io/privacypolicy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Profit Calc",
    "version": "3.0",
    "description": "profit calc extension",
    "icons": {
        "128": "icon128.png",
        "48": "icon148.png",
        "16": "icon16.png"
    },
    "action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "syncAll.js"
    },
    "permissions": [
        "cookies",
        "scripting",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.myshopify.com\/*",
        "*:\/\/*.aliexpress.com\/*",
        "*:\/\/*.profitcalc.io\/*",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.aliexpress.com\/*"
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';",
        "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
    }
}