Youtube Pickalen
Filter Youtube videos by length.
Τι είναι το Youtube Pickalen;
Το Youtube Pickalen είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Schersach Thomas, και η κύρια λειτουργία του είναι "Filter Youtube videos by length.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube Pickalen
Λήψη αρχείων επέκτασης 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)
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" ] } ] } |