Shopee Advanced Search

Filter search results containing ALL specified words, supporting word exclusion and minimum sold.

Shopee Advanced Searchคืออะไร?

Shopee Advanced Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย daniel.vanzin และคุณลักษณะหลักของมันคือ "Filter search results containing ALL specified words, supporting word exclusion and minimum sold."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shopee Advanced Search

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

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

                        USAGE
• automatically hides the products that don't contain ALL of the searched words
• FILTER by clicking on the button or pressing enter
• fill in the EXCLUDED WORDS box then FILTER
• modify the searched words then FILTER to refine your search
• leave both search boxes empty then FILTER to show all results


WHY
When you search for multiple words, Shopee will return products that:
• HAS NONE of the words
• HAS SOME of the words
• HAS ALL the words but still is NOT WHAT YOU EXPECTED

Care was taken to make it EFFICIENT so it will have near ZERO performance impact on your searching experience[^1].


EXAMPLE
When searching for "cashew nut", the site returns every kind of nut, and also "cashew nut CREAM" and "cashew nut COOKIES"
With this extension, only items that have both words "cashew" and "nut" will be kept, and you can exclude "CREAM" and "COOKIES" as well.


[^1]: A MUTATION OBSERVER ensure that the filtering occurs only at the right moments, and when all items are loaded, the script stops running.                    

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

ชื่อ Shopee Advanced Search Shopee Advanced Search
ID lpnljdamllppcklbfnmbbondhklklnni
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/shopee-advanced-search/lpnljdamllppcklbfnmbbondhklklnni
คำอธิบาย Filter search results containing ALL specified words, supporting word exclusion and minimum sold.
ขนาดไฟล์ 23.1 KB
จำนวนการติดตั้ง 98
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-11-21
วันที่เผยแพร่ 2022-09-06
คะแนน 2.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา daniel.vanzin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/icetbr/webext-shopee-advanced-search
URL หน้าช่วยเหลือ https://github.com/icetbr/webext-shopee-advanced-search/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shopee Advanced Search",
    "version": "1.2.0",
    "description": "Filter search results containing ALL specified words, supporting word exclusion and minimum sold.",
    "homepage_url": "https:\/\/github.com\/icetbr\/webext-shopee-advanced-search",
    "author": "icetbr",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "include_globs": [
                "https:\/\/shopee.*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}