AdvancedSearch for YouTube

Adds more filters to the Search.

AdvancedSearch for YouTube란 무엇입니까?

AdvancedSearch for YouTube은(는) t_nb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds more filters to the Search."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

AdvancedSearch for YouTube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        AdvancedSearch adds a few more options to the "Filters" menu when searching on YouTube.

For example, you can filter videos by exact length, by their upload date, by how many views they have. And more.

As of now, AdvancedSearch adds 20 new filters. Take a look at screenshots to see them all and an example use case.

Source code: https://github.com/ftde0/yt-advancedSearch                    

확장 프로그램 기본 정보

이름 AdvancedSearch for YouTube AdvancedSearch for YouTube
ID khbccecgpppakomjmdningcbjicdjpak
공식 URL https://chromewebstore.google.com/detail/advancedsearch-for-youtub/khbccecgpppakomjmdningcbjicdjpak
설명 Adds more filters to the Search.
파일 크기 34.46 KB
설치 횟수 4,110
현재 버전 1.4.1
최근 업데이트 2022-10-05
출시 날짜 2022-05-12
평점 3.18/5 총 39 개의 평점
개발자 t_nb
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AdvancedSearch for YouTube",
    "version": "1.4.1",
    "description": "Adds more filters to the Search.",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                ".\/video_tools\/sapisidhash.js",
                ".\/video_tools\/current_cfg_data.js",
                ".\/video_tools\/video_request.js",
                ".\/experimental_filters\/main.js",
                ".\/experimental_filters\/matching_keywords.js",
                ".\/experimental_filters\/upload_date.js",
                ".\/experimental_filters\/age_restricted.js",
                ".\/experimental_filters\/view_count.js",
                ".\/experimental_filters\/subscriber_count.js",
                ".\/experimental_filters\/subscriber_sort.js",
                ".\/utilities.js",
                ".\/workaround_css_add.js",
                ".\/filters.js"
            ],
            "css": [
                ".\/as_style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": ".\/icon.png"
    }
}