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…

Qu'est-ce que ShipStation Amazon Importer ?

ShipStation Amazon Importer est une extension Chrome développée par https://r14n.com, et sa fonction principale est "Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ShipStation Amazon Importer

Téléchargez les fichiers d'extension ShipStation Amazon Importer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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)                    

Informations de Base sur l'Extension

Nom ShipStation Amazon Importer ShipStation Amazon Importer
ID fmmbopmdmljjacpkmgcennkbdcmcajkn
URL Officiel https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn
Description Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…
Taille du Fichier 23.4 KB
Nombre d'Installations 34
Version Actuelle 0.3
Dernière Mise à Jour 2021-05-04
Date de Publication 2017-09-14
Développeur https://r14n.com
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.growbotforfollowers.com/privacy-policy.html
Langues Prises en Charge 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": [
        "*.*"
    ]
}