Youtube Time Filter

Filter Youtube videos by length of time when searching.

Youtube Time Filter란 무엇입니까?

Youtube Time Filter은(는) Diego Fortes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter Youtube videos by length of time when searching."입니다.

확장 프로그램 스크린샷

Youtube Time Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Filter searched videos by length of time. 

Do you want to search for videos only between 1:00 and 3:00 minutes long? Maybe between 01:00:00 and 02:00:00 hours long? Youtube Time Filter solves your problem.

Features:

- Real-time filtering
- Loaded only at the Youtube search page to keep your browsing experience fast
- Elegant and intuitive user interface
- Dynamically filters videos on scroll
- Automatically re-filters whenever you page changes.

Usage:

1. Go to youtube.com
2. Search for your preferred subject. 
3. Open the Youtube Filter extension.
4. Select the values "from" and "to". For instance, if you only want to watch videos between 1 minute and 3 minutes, 'from" should be 00:01:00 and "to" should be 00:03:00.
5. Click on "Filter".

If you notice any issues during the filter just reload the page to refresh the extension.

Feel free to send suggestions and ideas!

Note:
YouTube is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.                    

확장 프로그램 기본 정보

이름 Youtube Time Filter Youtube Time Filter
ID bafpllbamajknogcdbecmgflnbmdbbep
공식 URL https://chrome.google.com/webstore/detail/youtube-time-filter/bafpllbamajknogcdbecmgflnbmdbbep
설명 Filter Youtube videos by length of time when searching.
파일 크기 332 KB
설치 횟수 3,103
현재 버전 1.0.0
최근 업데이트 2020-10-04
출시 날짜 2020-05-22
평점 2.92/5 총 24 개의 평점
개발자 Diego Fortes
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Filter Youtube videos by length of time when searching.",
    "version": "1.0.0",
    "name": "Youtube Time Filter",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
    ],
    "permissions": [
        "tabs",
        "storage",
        "browserAction"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; https:\/\/www.google-analytics.com\/ https:\/\/www.youtube.com\/ https:\/\/s.ytimg.com;  object-src 'self'; child-src https:\/\/www.youtube.com\/ https:\/\/s.ytimg.com",
    "manifest_version": 2
}