MerchBridge Etsy Helper

An extension to help you fulfill Etsy orders easier with MerchBridge.

MerchBridge Etsy Helper란 무엇입니까?

MerchBridge Etsy Helper은(는) merchbridge.addons에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to help you fulfill Etsy orders easier with MerchBridge."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

MerchBridge Etsy Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        MerchBridge Etsy Helper is an extension to help you fulfill Etsy orders easier with MerchBridge. Sync your orders to MerchBridge and fulfill here.

* Setup an API key.
* Sync your orders to MerchBridge.
* Fulfill your orders at MerchBridge.
* Get tracking information for orders and add to Etsy order.
Visit https://dashboard.merchbridge.com/ for more information.                    

확장 프로그램 기본 정보

이름 MerchBridge Etsy Helper MerchBridge Etsy Helper
ID adgnmidokbhjkmggekmedphkifkhljie
공식 URL https://chromewebstore.google.com/detail/merchbridge-etsy-helper/adgnmidokbhjkmggekmedphkifkhljie
설명 An extension to help you fulfill Etsy orders easier with MerchBridge.
파일 크기 234 KB
설치 횟수 101
현재 버전 1.3.30
최근 업데이트 2024-02-19
출시 날짜 2023-01-03
개발자 merchbridge.addons
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://dashboard.merchbridge.com
도움말 페이지 URL https://dashboard.merchbridge.com
개인정보 보호 정책 페이지 URL https://merchbridge.com/privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MerchBridge Etsy Helper",
    "version": "1.3.30",
    "description": "An extension to help you fulfill Etsy orders easier with MerchBridge.",
    "devtools_page": "devtool\/devtool.html",
    "icons": {
        "16": "assets\/images\/16.png",
        "48": "assets\/images\/48.png",
        "128": "assets\/images\/128.png"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_title": "Etsy Helper",
        "default_icon": {
            "48": "assets\/images\/48.png"
        }
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.etsy.com\/*",
                "https:\/\/www.yuntrack.com\/*"
            ],
            "js": [
                "assets\/libs\/jquery.min.js",
                "assets\/libs\/jquery.toast.js",
                "scripts\/content_script.js",
                "scripts\/sync_order.js",
                "scripts\/add_tracking.js",
                "scripts\/settings.js",
                "scripts\/etsy-marketing\/change-style.js"
            ],
            "css": [
                "assets\/styles\/jquery.toast.css",
                "assets\/styles\/content.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'",
        "sandbox": "sandbox allow-scripts; script-src 'self' 'https:\/\/www.etsy.com\/*'; object-src 'self'"
    },
    "host_permissions": [
        "https:\/\/www.etsy.com\/*",
        "https:\/\/api-dev.merchbridge.com\/*",
        "https:\/\/api.merchbridge.com\/*",
        "http:\/\/127.0.0.1:8080\/*",
        "https:\/\/www.yuntrack.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/not-found.png",
                "assets\/images\/completed.png",
                "assets\/styles\/etsy-marketing\/style.css",
                "injected.js"
            ],
            "matches": [
                "https:\/\/www.etsy.com\/*",
                "https:\/\/www.yuntrack.com\/*"
            ]
        }
    ]
}