Profit Calc

profit calc extension

Profit Calc란 무엇입니까?

Profit Calc은(는) profitcalcapp에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "profit calc extension"입니다.

확장 프로그램 스크린샷

screenshot

Profit Calc 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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';"
    }
}