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…

Was ist ShipStation Amazon Importer?

ShipStation Amazon Importer ist eine Chrome-Erweiterung, die von https://r14n.com entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…".

Erweiterungsscreenshots

screenshot

ShipStation Amazon Importer-Erweiterungs-CRX-Datei herunterladen

Laden Sie ShipStation Amazon Importer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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)                    

Grundlegende Informationen zur Erweiterung

Name ShipStation Amazon Importer ShipStation Amazon Importer
ID fmmbopmdmljjacpkmgcennkbdcmcajkn
Offizielle URL https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn
Beschreibung Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…
Dateigröße 23.4 KB
Installationsanzahl 34
Aktuelle Version 0.3
Letztes Update 2021-05-04
Veröffentlichungsdatum 2017-09-14
Entwickler https://r14n.com
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.growbotforfollowers.com/privacy-policy.html
Unterstützte Sprachen 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": [
        "*.*"
    ]
}