Aliexpress sort by total price with shipping

Aliexpress filter extension

What is Aliexpress sort by total price with shipping?

Aliexpress sort by total price with shipping is a Chrome extension developed by Gavriel Guseinov, and its main feature is "Aliexpress filter extension".

Extension Screenshots

screenshot

Download Aliexpress sort by total price with shipping Extension CRX File

Download Aliexpress sort by total price with shipping 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

                        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                    

Extension Basic Information

Name Aliexpress sort by total price with shipping Aliexpress sort by total price with shipping
ID ekhcclfdfbgbcheceibcdfpofbjdbein
Official URL https://chromewebstore.google.com/detail/aliexpress-sort-by-total/ekhcclfdfbgbcheceibcdfpofbjdbein
Description Aliexpress filter extension
File Size 125 KB
Installation Count 576
Current Version 2
Last Updated 2022-03-10
Publish Date 2021-08-31
Rating 2.47/5 Total 19 Ratings
Developer Gavriel Guseinov
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}