YouTube Focus Mode
Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.
Τι είναι το YouTube Focus Mode;
Το YouTube Focus Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Saramsha Dotel, και η κύρια λειτουργία του είναι "Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube Focus Mode
Λήψη αρχείων επέκτασης YouTube Focus Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This chrome extension allows you to select the type of videos that you want to see in your YouTube feed and blocks/hides all other videos that do not belong to the selected categories. Most of the extensions block the entire feed and hide all recommendations which might not be what you want while studying or focusing on learning a topic. By selectively blocking the distracting videos only, this extension allows you to focus on what's important and prevents you from getting distracted into the YouTube rabbithole. The extension currently works in 3 scenarios within YouTube: - Home Feed - Search Results - Video player and its accompanying recommendation column
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube Focus Mode |
ID | jedeklblgiihonnldgldeagmbkhlblek |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-focus-mode/jedeklblgiihonnldgldeagmbkhlblek |
Περιγραφή | Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories. |
Μέγεθος Αρχείου | 173 KB |
Αριθμός Εγκαταστάσεων | 1,961 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2021-03-29 |
Ημερομηνία Δημοσίευσης | 2021-03-29 |
Αξιολόγηση | 4.04/5 Συνολικά 23 Αξιολογήσεις |
Προγραμματιστής | Saramsha Dotel |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://dotelsaramsha.com/ |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Focus Mode", "description": "Chrome Extension that allows you to focus by blocking YouTube videos from 'distractive' categories.", "manifest_version": 3, "version": "1.0.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": { "128": "icon128.png" }, "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "permissions": [ "storage" ] } |