MerchBridge Amazon Helper

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

ما هو MerchBridge Amazon Helper؟

MerchBridge Amazon Helper هو إضافة Chrome تم تطويرها بواسطة merchbridge.addons، والميزة الرئيسية لها هي "An extension to help you fulfill Amazon orders easier with MerchBridge.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة MerchBridge Amazon Helper

قم بتنزيل ملفات الامتداد MerchBridge Amazon Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        MerchBridge Amazon Helper is an extension to help you fulfill Amazon 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 Amazon order.
Visit https://dashboard.merchbridge.com/ for more information.                    

معلومات أساسية عن التمديد

الاسم MerchBridge Amazon Helper MerchBridge Amazon Helper
ID gehfhcppdhkghhcbgedldpphjhfdljdb
عنوان URL الرسمي https://chromewebstore.google.com/detail/merchbridge-amazon-helper/gehfhcppdhkghhcbgedldpphjhfdljdb
الوصف An extension to help you fulfill Amazon orders easier with MerchBridge.
حجم الملف 241 KB
عدد التثبيتات 484
النسخة الحالية 1.2.41
آخر تحديث 2024-03-01
تاريخ النشر 2020-10-07
المطور merchbridge.addons
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://dashboard.merchbridge.com
عنوان صفحة المساعدة https://dashboard.merchbridge.com
عنوان صفحة سياسة الخصوصية https://merchbridge.com/privacy-policy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MerchBridge Amazon Helper",
    "version": "1.2.41",
    "description": "An extension to help you fulfill Amazon orders easier with MerchBridge.",
    "icons": {
        "16": "assets\/images\/16.png",
        "48": "assets\/images\/48.png",
        "128": "assets\/images\/128.png"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_title": "MerchBridge Amazon Helper",
        "default_icon": {
            "48": "assets\/images\/48.png"
        }
    },
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/sellercentral.amazon.com\/*",
                "https:\/\/sellercentral-europe.amazon.com\/*",
                "https:\/\/sellercentral.amazon.de\/*",
                "https:\/\/sellercentral.amazon.co.uk\/*"
            ],
            "js": [
                "assets\/libs\/jquery.min.js",
                "assets\/libs\/jquery.toast.js",
                "scripts\/content_script.js",
                "scripts\/sync_order.js",
                "scripts\/add_tracking.js",
                "scripts\/grand_total.js"
            ],
            "css": [
                "assets\/styles\/jquery.toast.css",
                "assets\/styles\/content.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content\/content-start.js"
            ],
            "run_at": "document_start"
        }
    ],
    "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:\/\/sellercentral.amazon.com\/*'; object-src 'self'"
    },
    "permissions": [
        "storage",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/sellercentral.amazon.com\/*",
        "https:\/\/sellercentral-europe.amazon.com\/*",
        "https:\/\/sellercentral.amazon.co.uk\/*",
        "https:\/\/sellercentral.amazon.de\/*",
        "https:\/\/www.amazon.com\/*",
        "https:\/\/api-dev.merchbridge.com\/*",
        "https:\/\/api.merchbridge.com\/*",
        "http:\/\/127.0.0.1:8080\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/not-found.png",
                "assets\/images\/completed.png"
            ],
            "matches": [
                "https:\/\/sellercentral.amazon.com\/*",
                "https:\/\/sellercentral-europe.amazon.com\/*",
                "https:\/\/sellercentral.amazon.de\/*",
                "https:\/\/sellercentral.amazon.co.uk\/*"
            ]
        }
    ]
}