Youtube Pickalen

Filter Youtube videos by length.

Youtube Pickalen란 무엇입니까?

Youtube Pickalen은(는) Schersach Thomas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter Youtube videos by length."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Have you ever wanted to quickly see which videos were longer than xx minutes ? This extension was made for you.
With Youtube Pickalen, you can make every video shorter than your wanted duration disappear.
And you can also make them appear again with a reset button !

This is a very simple open source extension. It respects you and your privacy, it does not track you and only needs permissions for youtube.com.

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

Changelog :

1.3

Extension should now also works on playlists.
Rewrote the underlying code.

1.2

Extension now works in list view and still works in grid view.

1.1

Rework filters :
* Shorter than (Maximum video time) : Remove all videos with a time greater than the specified duration.
* Longer than (Minimum video time) : Remove all videos with a time lesser than the specified duration.
* Between : Remove all videos that are not in the specified interval (Min-Max)                    

확장 프로그램 기본 정보

이름 Youtube Pickalen Youtube Pickalen
ID hgdcfacmniokkeaaojkgpeohkbabkigd
공식 URL https://chrome.google.com/webstore/detail/youtube-pickalen/hgdcfacmniokkeaaojkgpeohkbabkigd
설명 Filter Youtube videos by length.
파일 크기 14 KB
설치 횟수 467
현재 버전 1.3
최근 업데이트 2017-02-11
출시 날짜 2017-02-11
평점 2.59/5 총 17 개의 평점
개발자 Schersach Thomas
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tirke/youtube-pickalen
도움말 페이지 URL https://github.com/tirke/youtube-pickalen/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Pickalen",
    "short_name": "yt-pickalen",
    "description": "Filter Youtube videos by length.",
    "homepage_url": "https:\/\/github.com\/tirke\/youtube-pickalen",
    "version": "1.3",
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "filter.js"
            ],
            "css": [
                "filter.css"
            ]
        }
    ]
}