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…”。
扩展截图
下载ShipStation Amazon Importer扩展crx文件
下载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)                     扩展基本信息
| 名称 |   |  
| 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": [
        "*.*"
    ]
}  |  |