Youtube Pickalen

Filter Youtube videos by length.

什麼是Youtube Pickalen?

Youtube Pickalen是由Schersach Thomas開發的Chrome擴展程式,該擴展的主要功能是“Filter Youtube videos by length.”。

擴展截圖

screenshot
screenshot

下載Youtube Pickalen擴展crx文件

下載Youtube Pickalen擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
            ]
        }
    ]
}