Youtube Pickalen

Filter Youtube videos by length.

Youtube Pickalen क्या है?

Youtube Pickalen Schersach Thomas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Filter Youtube videos by length."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube Pickalen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
            ]
        }
    ]
}