Profit Calc

profit calc extension

Co to jest Profit Calc?

Profit Calc to rozszerzenie Chrome opracowane przez profitcalcapp, a jego główną funkcją jest „profit calc extension”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Profit Calc

Pobierz pliki rozszerzeń Profit Calc w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Profit Calc Profit Calc
ID jgdppdfjmgeelomofklppldcemjmmlkn
Oficjalny URL https://chromewebstore.google.com/detail/profit-calc/jgdppdfjmgeelomofklppldcemjmmlkn
Opis profit calc extension
Rozmiar pliku 161 KB
Liczba instalacji 332
Aktualna Wersja 3.0
Ostatnia Aktualizacja 2024-01-30
Data Publikacji 2020-06-22
Deweloper profitcalcapp
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.profitcalc.io/
Adres URL Strony Pomocy https://www.profitcalc.io/
Adres URL Strony Polityki Prywatności https://www.profitcalc.io/privacypolicy
Obsługiwane Języki 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';"
    }
}