Profit Calc

profit calc extension

什么是Profit Calc?

Profit Calc是由profitcalcapp开发的Chrome扩展程序,该扩展的主要功能是“profit calc extension”。

扩展截图

screenshot

下载Profit Calc扩展crx文件

下载Profit Calc扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Profit Calc Profit Calc
ID jgdppdfjmgeelomofklppldcemjmmlkn
官方URL https://chromewebstore.google.com/detail/profit-calc/jgdppdfjmgeelomofklppldcemjmmlkn
简介 profit calc extension
文件大小 161 KB
安装次数 332
当前版本 3.0
更新时间 2024-01-30
上架时间 2020-06-22
开发者 profitcalcapp
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.profitcalc.io/
帮助页面URL https://www.profitcalc.io/
隐私政策页面URL https://www.profitcalc.io/privacypolicy
支持的语言 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';"
    }
}