Aliexpress sort by total price with shipping

Aliexpress filter extension

O que é Aliexpress sort by total price with shipping?

Aliexpress sort by total price with shipping é uma extensão do Chrome desenvolvida por Gavriel Guseinov, e sua principal característica é "Aliexpress filter extension".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Aliexpress sort by total price with shipping

Baixe arquivos de extensão Aliexpress sort by total price with shipping no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Aliexpress sort by total price with shipping Aliexpress sort by total price with shipping
ID ekhcclfdfbgbcheceibcdfpofbjdbein
URL Oficial https://chromewebstore.google.com/detail/aliexpress-sort-by-total/ekhcclfdfbgbcheceibcdfpofbjdbein
Descrição Aliexpress filter extension
Tamanho do Arquivo 125 KB
Contagem de Instalações 576
Versão Atual 2
Última Atualização 2022-03-10
Data de Publicação 2021-08-31
Classificação 2.47/5 Total de 19 Avaliações
Desenvolvedor Gavriel Guseinov
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}