Default Amazon Sort

Extension to change the default sorting method for product searches on Amazon websites.

Default Amazon Sortคืออะไร?

Default Amazon Sort เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Harsh Ankur และคุณลักษณะหลักของมันคือ "Extension to change the default sorting method for product searches on Amazon websites."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Default Amazon Sort

ดาวน์โหลดไฟล์ส่วนขยาย Default Amazon Sort ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        UPDATE:
I have removed Prime Only selection feature from the extension as it would not work anymore because Amazon has changed its layout and they are not consistent for me to find a pattern to trigger Prime Only selection.

I am not happy when Amazon search results end up showing "Featured" product sort order by default. I am more interested in getting a sort order of my choice as default so I do not have to manually change it everytime I search for a product. Therefore, I ended up building this chrome extension that automatically shows only the sort order that I want to see. 

So, if you are like me and you want to set a default sort method instead of always clicking on the sort order and selecting "Average Customer Reviews" or "Price: Low to High", this extension is for you. It will save you a click and selecting the right sort order. There is also an OFF switch if you choose to go wild and opt for a different sort method without changing your default.

This is an early release. I will keep updating it every now and then. Please send me your honest critical feedback on [email protected]. It will make me build a better product for a bigger set of audience.

THANK YOU!                    

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

ชื่อ Default Amazon Sort Default Amazon Sort
ID ecdaichlcngcgakihidbmmjogchhklga
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/default-amazon-sort/ecdaichlcngcgakihidbmmjogchhklga
คำอธิบาย Extension to change the default sorting method for product searches on Amazon websites.
ขนาดไฟล์ 122 KB
จำนวนการติดตั้ง 312
เวอร์ชันปัจจุบัน 3.0.0
อัปเดตครั้งล่าสุด 2023-06-28
วันที่เผยแพร่ 2020-04-26
คะแนน 3.83/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Harsh Ankur
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ de,en,fr,nl,tr,es,it,pt-BR,hi,ar,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "DAS",
    "version": "3.0.0",
    "description": "__MSG_appDesc__",
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/www.amazon.com.au\/*",
        "https:\/\/www.amazon.com.be\/*",
        "https:\/\/www.amazon.com.br\/*",
        "https:\/\/www.amazon.ca\/*",
        "https:\/\/www.amazon.cn\/*",
        "https:\/\/www.amazon.eg\/*",
        "https:\/\/www.amazon.fr\/*",
        "https:\/\/www.amazon.de\/*",
        "https:\/\/www.amazon.in\/*",
        "https:\/\/www.amazon.it\/*",
        "https:\/\/www.amazon.co.jp\/*",
        "https:\/\/www.amazon.com.mx\/*",
        "https:\/\/www.amazon.nl\/*",
        "https:\/\/www.amazon.pl\/*",
        "https:\/\/www.amazon.sa\/*",
        "https:\/\/www.amazon.com.sg\/*",
        "https:\/\/www.amazon.es\/*",
        "https:\/\/www.amazon.se\/*",
        "https:\/\/www.amazon.com.tr\/*",
        "https:\/\/www.amazon.ae\/*",
        "https:\/\/www.amazon.co.uk\/*",
        "https:\/\/www.amazon.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/das16.png",
            "32": "images\/das32.png",
            "48": "images\/das48.png",
            "128": "images\/das128.png"
        }
    },
    "icons": {
        "16": "images\/das16.png",
        "32": "images\/das32.png",
        "48": "images\/das48.png",
        "128": "images\/das128.png"
    },
    "manifest_version": 3,
    "default_locale": "en"
}