YT Focus - Learning Made Easy
YouTube without all the distractions
Τι είναι το YT Focus - Learning Made Easy;
Το YT Focus - Learning Made Easy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον company yellow, και η κύρια λειτουργία του είναι "YouTube without all the distractions".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YT Focus - Learning Made Easy
Λήψη αρχείων επέκτασης YT Focus - Learning Made Easy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
It's always hard to learn in the same place you relax. YouTube Focus fixes that problem: - Hide homepage recommendations - Blur or Hide Recommendations - Video Brightness - Video Blue Light Filter (Sepia) - Hide Comments - Hide Shorts - lowercase titles combat (CLICK BAIT) - Power Button to toggle on & off YT Focus About: YouTube Focus improves productivity by combatting distractions on YouTube. This means getting rid of flashy click-bait thumbnails, and titles THAT LOOK LIKE THIS, hiding shorts, and so much more. YouTube Focus, well, wants you to focus! With this app, you can laser focus on whatever you need to do, stopping impulsive clicks or searches. Then when you're done, toggle it off, kick-back and relax. Open Source (Learn How to Make a Chrome Extension): YouTube Focus is open source, meaning that all the code for this extension is visible on our github page! If you've been looking to contribute or want to learn how to make your own chrome extension like this, it's all available on our repository! We have both our chrome extension and website code public, so there's a lot to learn or add to. Open for Feedback: YouTube Focus is committed to providing a distraction free learning experience on YouTube. If you find any bugs or have a feature suggestion, let us know on GitHub! Report Bugs: If you encounter any bugs while using YouTube Focus, please leave an issue on our GitHub page. Additionally, most bugs are fixed by refreshing the page. Personal Data: YouTube Focus respects the privacy of its users and is committed to protecting their personal information. We do not collect or retain any personal data, browsing history or other identifying information. Third Party Services: YouTube Focus uses Chrome (Chromium) or WebExtensions Storage Sync API to store user settings, and browser's Web Storage API (localStorage) to store Developer Tools fixes. Donations to YouTube Focus are processed by Open Collective and their chosen payment processors, Stripe and PayPal. Do yourself a favor and get focused!
Βασικές Πληροφορίες Επέκτασης
Όνομα | YT Focus - Learning Made Easy |
ID | fdekaebckbnpgafknooinjcnelmlhiip |
Επίσημο URL | https://chromewebstore.google.com/detail/yt-focus-learning-made-ea/fdekaebckbnpgafknooinjcnelmlhiip |
Περιγραφή | YouTube without all the distractions |
Μέγεθος Αρχείου | 49.02 KB |
Αριθμός Εγκαταστάσεων | 294 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2024-01-21 |
Ημερομηνία Δημοσίευσης | 2023-01-23 |
Αξιολόγηση | 5.00/5 Συνολικά 11 Αξιολογήσεις |
Προγραμματιστής | company yellow |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://yt-focus.org/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/yt-focus/yt-focus/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YT Focus - Learning Made Easy", "version": "1.1.1", "description": "YouTube without all the distractions", "permissions": [ "tabs", "activeTab", "storage", "scripting" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "icons": { "16": "assets\/ui-icon-16.png", "48": "assets\/ui-icon-48.png", "128": "assets\/ui-icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "scripts\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/blur-icon.png", "assets\/brightness-icon.png", "assets\/github-icon.png", "assets\/greyscale-icon.png", "assets\/sepia-icon.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ui-icon-16.png", "24": "assets\/ui-icon-24.png", "32": "assets\/ui-icon-32.png", "48": "assets\/ui-icon-48.png", "128": "assets\/ui-icon.png" }, "default_title": "YT Focus", "default_popup": "popup.html" }, "manifest_version": 3 } |