Shopee Advanced Search

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

Shopee Advanced Search क्या है?

Shopee Advanced Search daniel.vanzin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter search results containing ALL specified words, supporting word exclusion and minimum sold."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Shopee Advanced Search एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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