ShipStation Amazon Importer

Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…

ShipStation Amazon Importerคืออะไร?

ShipStation Amazon Importer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://r14n.com และคุณลักษณะหลักของมันคือ "Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ShipStation Amazon Importer

ดาวน์โหลดไฟล์ส่วนขยาย ShipStation Amazon Importer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds a button to Amazon orders to import that order to ShipStation.  Useful if you don't have an Amazon pro account.  

Enter your ShipStation API Key/Secret at the options page (chrome://extensions)

Note: this plugin is a BETA!  If you experience issues please email me at [email protected]

Update log:
---------------------------------------------------------
0.2 - add a "mark shipped" next to Amazon orders in the Shipments page of ShipStation (https://ss5.shipstation.com/#/track/shipments)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ ShipStation Amazon Importer ShipStation Amazon Importer
ID fmmbopmdmljjacpkmgcennkbdcmcajkn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn
คำอธิบาย Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…
ขนาดไฟล์ 23.4 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 0.3
อัปเดตครั้งล่าสุด 2021-05-04
วันที่เผยแพร่ 2017-09-14
ผู้พัฒนา https://r14n.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://www.growbotforfollowers.com/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "",
    "default_locale": "en",
    "version": "0.3",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "hot-reload.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ],
    "web_accessible_resources": [
        "*.*"
    ]
}