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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}