Shopee Advanced Search

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

什麼是Shopee Advanced Search?

Shopee Advanced Search是由daniel.vanzin開發的Chrome擴展程式,該擴展的主要功能是“Filter search results containing ALL specified words, supporting word exclusion and minimum sold.”。

擴展截圖

screenshot

下載Shopee Advanced Search擴展crx文件

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