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…
Cos'è ShipStation Amazon Importer?
ShipStation Amazon Importer è un'estensione di Chrome sviluppata da https://r14n.com, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione ShipStation Amazon Importer
Scarica i file di estensione ShipStation Amazon Importer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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)
Informazioni di Base sull'Estensione
Nome | ShipStation Amazon Importer |
ID | fmmbopmdmljjacpkmgcennkbdcmcajkn |
URL Ufficiale | https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn |
Descrizione | Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your… |
Dimensione del File | 23.4 KB |
Conteggio Installazioni | 34 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2021-05-04 |
Data di Pubblicazione | 2017-09-14 |
Sviluppatore | https://r14n.com |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.growbotforfollowers.com/privacy-policy.html |
Lingue Supportate | 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": [ "*.*" ] } |