Freights Assistant 3.0
The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.
Freights Assistant 3.0 là gì?
Freights Assistant 3.0 là một tiện ích mở rộng Chrome được phát triển bởi Patryk Skłodowski, và tính năng chính của nó là "The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.".
Ả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 Freights Assistant 3.0
Tải xuống các tệp mở rộng Freights Assistant 3.0 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
The new version of the extension is intended for mixed and transport companies to speed up the search for suitable orders. Search for orders simultaneously on multiple sites.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Freights Assistant 3.0 |
ID | mkfkfdamnpbjicibenkeokhlibldoloo |
URL Chính Thức | https://chromewebstore.google.com/detail/freights-assistant-30/mkfkfdamnpbjicibenkeokhlibldoloo |
Mô tả | The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation. |
Kích Thước Tệp | 44.79 KB |
Số Lần Cài Đặt | 99 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2021-02-02 |
Ngày Phát Hành | 2021-02-01 |
Nhà Phát Triển | Patryk Skłodowski |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.freightassistant.one/ |
URL Trang Trợ Giúp | https://www.freightassistant.one/ |
URL Trang Chính Sách Bảo Mật | https://www.freightassistant.one?page_id=86 |
Ngôn Ngữ Được Hỗ Trợ | pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Freights Assistant 3.0", "short_name": "Freights Assistant 3.0", "version": "3.0", "description": "The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.", "icons": { "16": "16x16.png", "32": "32x32.png", "48": "48x48.png", "64": "64x64.png", "96": "96x96.png", "128": "128x128.png" }, "content_scripts": [ { "matches": [ "https:\/\/auth.platform.trans.eu\/*" ], "js": [ "in-content.js" ] }, { "matches": [ "https:\/\/platform.trans.eu\/*" ], "js": [ "getTransTokenContent.js" ] } ], "browser_action": { "default_icon": { "16": "16x16.png", "32": "32x32.png", "48": "48x48.png", "64": "64x64.png", "96": "96x96.png", "128": "128x128.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'", "permissions": [ "tabs", "alarms", "storage", "webRequest", "https:\/\/api-platform.trans.eu\/*", "https:\/\/platform.trans.eu\/*", "*:\/\/localhost\/*", "https:\/\/trans-cargo-api.herokuapp.com\/*" ] } |