Profit Calc

profit calc extension

Profit Calc là gì?

Profit Calc là một tiện ích mở rộng Chrome được phát triển bởi profitcalcapp, và tính năng chính của nó là "profit calc extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Profit Calc

Tải xuống các tệp mở rộng Profit Calc dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Profit Calc Profit Calc
ID jgdppdfjmgeelomofklppldcemjmmlkn
URL Chính Thức https://chromewebstore.google.com/detail/profit-calc/jgdppdfjmgeelomofklppldcemjmmlkn
Mô tả profit calc extension
Kích Thước Tệp 161 KB
Số Lần Cài Đặt 332
Phiên Bản Hiện Tại 3.0
Cập Nhật Lần Cuối 2024-01-30
Ngày Phát Hành 2020-06-22
Nhà Phát Triển profitcalcapp
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.profitcalc.io/
URL Trang Trợ Giúp https://www.profitcalc.io/
URL Trang Chính Sách Bảo Mật https://www.profitcalc.io/privacypolicy
Ngôn Ngữ Được Hỗ Trợ 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';"
    }
}