Aliexpress sort by total price with shipping

Aliexpress filter extension

什麼是Aliexpress sort by total price with shipping?

Aliexpress sort by total price with shipping是由Gavriel Guseinov開發的Chrome擴展程式,該擴展的主要功能是“Aliexpress filter extension”。

擴展截圖

screenshot

下載Aliexpress sort by total price with shipping擴展crx文件

下載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
官方網址 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"
    ]
}