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…
Wat is ShipStation Amazon Importer?
ShipStation Amazon Importer is een Chrome-extensie ontwikkeld door https://r14n.com, en de belangrijkste functie is "Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…".
Extensie Screenshots
Download het CRX-bestand van de extensie ShipStation Amazon Importer
Download ShipStation Amazon Importer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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)
Basisinformatie over de Extensie
Naam | ShipStation Amazon Importer |
ID | fmmbopmdmljjacpkmgcennkbdcmcajkn |
Officiële URL | https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn |
Beschrijving | Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your… |
Bestandsgrootte | 23.4 KB |
Aantal Installaties | 34 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2021-05-04 |
Publicatiedatum | 2017-09-14 |
Ontwikkelaar | https://r14n.com |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.growbotforfollowers.com/privacy-policy.html |
Ondersteunde Talen | 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": [ "*.*" ] } |