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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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 फ़ाइल डाउनलोड करें

crx प्रारूप में ShipStation Amazon Importer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        "*.*"
    ]
}