Distraction Free YouTube
Are you distracted while watching educational videos! Hide those who got in your way to success.
Τι είναι το Distraction Free YouTube;
Το Distraction Free YouTube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον distractions.freee, και η κύρια λειτουργία του είναι "Are you distracted while watching educational videos! Hide those who got in your way to success.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Distraction Free YouTube
Λήψη αρχείων επέκτασης Distraction Free YouTube σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Sometimes while studying or watching educational videos. YouTube recommends videos that distract us, and we end up watching videos that are entirely a waste of time. We developed this extension as a part of making social media a boon, not a bane. You can find more info about us on https://distractionsfree.life We need your feedback on our product. We aim to make social media as productive as we can, and for that, we need your support. Tell us about new features we should introduce in our extension, any bug. Thanks for your support.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Distraction Free YouTube |
ID | hoeoebicgchngdidmbadgkdiempefcfn |
Επίσημο URL | https://chromewebstore.google.com/detail/distraction-free-youtube/hoeoebicgchngdidmbadgkdiempefcfn |
Περιγραφή | Are you distracted while watching educational videos! Hide those who got in your way to success. |
Μέγεθος Αρχείου | 89.64 KB |
Αριθμός Εγκαταστάσεων | 853 |
Τρέχουσα Έκδοση | 0.2.1 |
Τελευταία Ενημέρωση | 2020-10-19 |
Ημερομηνία Δημοσίευσης | 2020-10-13 |
Αξιολόγηση | 4.50/5 Συνολικά 16 Αξιολογήσεις |
Προγραμματιστής | distractions.freee |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Distraction Free YouTube", "version": "0.2.1", "description": "Are you distracted while watching educational videos! Hide those who got in your way to success. ", "permissions": [ "activeTab", "declarativeContent", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "custom.css" ], "js": [ "logic.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/cropped.png", "32": "images\/cropped.png", "48": "images\/cropped.png", "128": "images\/cropped.png" } }, "icons": { "16": "images\/cropped.png", "32": "images\/cropped.png", "48": "images\/cropped.png", "128": "images\/cropped.png" }, "manifest_version": 2 } |