Freights Assistant 3.0

The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.

Freights Assistant 3.0คืออะไร?

Freights Assistant 3.0 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Patryk Skłodowski และคุณลักษณะหลักของมันคือ "The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Freights Assistant 3.0

ดาวน์โหลดไฟล์ส่วนขยาย Freights Assistant 3.0 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Freights Assistant 3.0 Freights Assistant 3.0
ID mkfkfdamnpbjicibenkeokhlibldoloo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/freights-assistant-30/mkfkfdamnpbjicibenkeokhlibldoloo
คำอธิบาย The extension optimizes daily work when adding freight - it automatically sends orders for cargo transportation.
ขนาดไฟล์ 44.79 KB
จำนวนการติดตั้ง 99
เวอร์ชันปัจจุบัน 3.0
อัปเดตครั้งล่าสุด 2021-02-02
วันที่เผยแพร่ 2021-02-01
ผู้พัฒนา Patryk Skłodowski
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.freightassistant.one/
URL หน้าช่วยเหลือ https://www.freightassistant.one/
URL หน้านโยบายความเป็นส่วนตัว https://www.freightassistant.one?page_id=86
ภาษาที่รองรับ 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\/*"
    ]
}