Freights Assistant 3.0
The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.
What is Freights Assistant 3.0?
Freights Assistant 3.0 is a Chrome extension developed by Patryk Skłodowski, and its main feature is "The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.".
Extension Screenshots
Download Freights Assistant 3.0 Extension CRX File
Download Freights Assistant 3.0 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Freights Assistant 3.0 |
ID | mkfkfdamnpbjicibenkeokhlibldoloo |
Official URL | https://chromewebstore.google.com/detail/freights-assistant-30/mkfkfdamnpbjicibenkeokhlibldoloo |
Description | The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation. |
File Size | 44.79 KB |
Installation Count | 99 |
Current Version | 3.0 |
Last Updated | 2021-02-02 |
Publish Date | 2021-02-01 |
Developer | Patryk Skłodowski |
[email protected] | |
Payment Type | free |
Extension Website | https://www.freightassistant.one/ |
Help Page URL | https://www.freightassistant.one/ |
Privacy Policy Page URL | https://www.freightassistant.one?page_id=86 |
Supported Languages | 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\/*" ] } |