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은(는) https://r14n.com에 의해 개발된 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…"입니다.

확장 프로그램 스크린샷

screenshot

ShipStation Amazon Importer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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": [
        "*.*"
    ]
}