Youtube Time Filter
Filter Youtube videos by length of time when searching.
Τι είναι το Youtube Time Filter;
Το Youtube Time Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Diego Fortes, και η κύρια λειτουργία του είναι "Filter Youtube videos by length of time when searching.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Youtube Time Filter
Λήψη αρχείων επέκτασης Youtube Time Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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 } |