Shopee Advanced Search

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

Qu'est-ce que Shopee Advanced Search ?

Shopee Advanced Search est une extension Chrome développée par daniel.vanzin, et sa fonction principale est "Filter search results containing ALL specified words, supporting word exclusion and minimum sold.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Shopee Advanced Search

Téléchargez les fichiers d'extension Shopee Advanced Search au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Shopee Advanced Search Shopee Advanced Search
ID lpnljdamllppcklbfnmbbondhklklnni
URL Officiel https://chromewebstore.google.com/detail/shopee-advanced-search/lpnljdamllppcklbfnmbbondhklklnni
Description Filter search results containing ALL specified words, supporting word exclusion and minimum sold.
Taille du Fichier 23.1 KB
Nombre d'Installations 98
Version Actuelle 1.2.0
Dernière Mise à Jour 2023-11-21
Date de Publication 2022-09-06
Évaluation 2.50/5 Total 2 Évaluations
Développeur daniel.vanzin
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/icetbr/webext-shopee-advanced-search
URL de la Page d'Aide https://github.com/icetbr/webext-shopee-advanced-search/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}