Better YouTube Subscriptions
Hide YouTube Shorts and videos you have already watched from your subscriptions feed !
Τι είναι το Better YouTube Subscriptions;
Το Better YouTube Subscriptions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον OptiSearch, και η κύρια λειτουργία του είναι "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Better YouTube Subscriptions
Λήψη αρχείων επέκτασης Better YouTube Subscriptions σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Better YouTube Subscriptions is a simple browser extension that allows you to hide the YouTube Shorts videos that are polluting your subscriptions feed. It can also hide the videos that you have already watched. Of course, you can make them appear again with a simple click of a button. In short, it cleans your YouTube Subscriptions feed to only show what you want to watch !
Βασικές Πληροφορίες Επέκτασης
Όνομα | Better YouTube Subscriptions |
ID | hbopiiffeioghjoeakkknpcealnlomod |
Επίσημο URL | https://chromewebstore.google.com/detail/better-youtube-subscripti/hbopiiffeioghjoeakkknpcealnlomod |
Περιγραφή | Hide YouTube Shorts and videos you have already watched from your subscriptions feed ! |
Μέγεθος Αρχείου | 28 KB |
Αριθμός Εγκαταστάσεων | 37 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2023-02-26 |
Ημερομηνία Δημοσίευσης | 2022-09-29 |
Αξιολόγηση | 1.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | OptiSearch |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
URL της Σελίδας Πολιτικής Απορρήτου | https://dj0ulo.github.io/OptiSearch/privacy.html |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better YouTube Subscriptions", "version": "1.0", "manifest_version": 3, "description": "Hide YouTube Shorts and videos you have already watched from your subscriptions feed !", "icons": { "128": "images\/icon_128.png", "1024": "images\/icon_1024.png" }, "permissions": [ "storage" ], "action": { "default_popup": "src\/pop-up\/index.html" }, "web_accessible_resources": [ { "resources": [ "src\/style.css" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "src\/settings.js", "src\/utils.js", "src\/content_script.js" ] } ] } |