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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}