Aliexpress sort by total price with shipping

Aliexpress filter extension

Aliexpress sort by total price with shippingคืออะไร?

Aliexpress sort by total price with shipping เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Gavriel Guseinov และคุณลักษณะหลักของมันคือ "Aliexpress filter extension"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Aliexpress sort by total price with shipping

ดาวน์โหลดไฟล์ส่วนขยาย Aliexpress sort by total price with shipping ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This extension combines and sorts the product and shipping price in Aliexpress.
This way you know initially what would be the total combined price of the product with shipping and can arrange or sort products by price including shipping more effectively while finding a cheaper deals.

=================================

This extension proposes you product with affiliate links, by using the extension you approve us to redirect you to affiliate program.

Because Aliexpress interface code can change in different locations  what results in bugs. 
we decided to move this project to open-source so you can edit the extension and help us to make it better:
https://github.com/Gavrik-803/aliexpress-show-price-with-shipping-google-chrome-extension                    

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

ชื่อ Aliexpress sort by total price with shipping Aliexpress sort by total price with shipping
ID ekhcclfdfbgbcheceibcdfpofbjdbein
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aliexpress-sort-by-total/ekhcclfdfbgbcheceibcdfpofbjdbein
คำอธิบาย Aliexpress filter extension
ขนาดไฟล์ 125 KB
จำนวนการติดตั้ง 576
เวอร์ชันปัจจุบัน 2
อัปเดตครั้งล่าสุด 2022-03-10
วันที่เผยแพร่ 2021-08-31
คะแนน 2.47/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา Gavriel Guseinov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Aliexpress sort by total price with shipping",
    "version": "2",
    "description": "__MSG_extDescription__",
    "permissions": [
        "storage",
        "https:\/\/www.aliexpress.com\/*",
        "https:\/\/aliexpress.com\/*",
        "https:\/\/www.aliexpress.ru\/*",
        "https:\/\/aliexpress.ru\/*",
        "https:\/\/*.aliexpress.com\/*"
    ],
    "author": "NextNextDev ",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "__MSG_extName__",
        "default_popup": "start.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.aliexpress.com\/*\/*",
                "https:\/\/www.aliexpress.ru\/*\/*",
                "https:\/\/aliexpress.com\/*\/*",
                "https:\/\/aliexpress.ru\/*\/*",
                "https:\/\/*.aliexpress.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "content.bundle.js"
            ]
        },
        {
            "matches": [
                "https:\/\/shoppingcart.aliexpress.ru\/orders.htm*",
                "https:\/\/shoppingcart.aliexpress.com\/orders.htm*"
            ],
            "run_at": "document_idle",
            "js": [
                "order.bundle.js"
            ]
        }
    ],
    "default_locale": "en",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "web_accessible_resources": [
        "*.html",
        "*.png",
        "*.eot",
        "*.woff",
        "*.woff2",
        "*.ttf",
        "*.svg",
        "*.gif"
    ]
}