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 là gì?
ShipStation Amazon Importer là một tiện ích mở rộng Chrome được phát triển bởi https://r14n.com, và tính năng chính của nó là "Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your…".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ShipStation Amazon Importer
Tải xuống các tệp mở rộng ShipStation Amazon Importer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ShipStation Amazon Importer |
ID | fmmbopmdmljjacpkmgcennkbdcmcajkn |
URL Chính Thức | https://chromewebstore.google.com/detail/shipstation-amazon-import/fmmbopmdmljjacpkmgcennkbdcmcajkn |
Mô tả | Adds a button to Amazon orders to import that order to ShipStation. Useful if you don't have an Amazon pro account. Enter your… |
Kích Thước Tệp | 23.4 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.3 |
Cập Nhật Lần Cuối | 2021-05-04 |
Ngày Phát Hành | 2017-09-14 |
Nhà Phát Triển | https://r14n.com |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://www.growbotforfollowers.com/privacy-policy.html |
Ngôn Ngữ Được Hỗ Trợ | 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": [ "*.*" ] } |