No YouTube Shorts
Removes all Shorts from YouTube
Τι είναι το No YouTube Shorts;
Το No YouTube Shorts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ben, και η κύρια λειτουργία του είναι "Removes all Shorts from YouTube".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης No YouTube Shorts
Λήψη αρχείων επέκτασης No YouTube Shorts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Tired of the YouTube Shorts? No problem, this extension has your back and removes them from the YouTube page! New in version 0.6.2: - Bugfixes Bugs? Improvement ideas? Feel free to message me.
Βασικές Πληροφορίες Επέκτασης
Όνομα | No YouTube Shorts |
ID | hjfkenebldkfgibelglepinlabpjfbll |
Επίσημο URL | https://chromewebstore.google.com/detail/no-youtube-shorts/hjfkenebldkfgibelglepinlabpjfbll |
Περιγραφή | Removes all Shorts from YouTube |
Μέγεθος Αρχείου | 37.34 KB |
Αριθμός Εγκαταστάσεων | 60,000 |
Τρέχουσα Έκδοση | 0.6.2 |
Τελευταία Ενημέρωση | 2023-09-27 |
Ημερομηνία Δημοσίευσης | 2022-03-03 |
Αξιολόγηση | 4.31/5 Συνολικά 240 Αξιολογήσεις |
Προγραμματιστής | Ben |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "No YouTube Shorts", "description": "Removes all Shorts from YouTube", "version": "0.6.2", "action": { "default_popup": "popup.html", "default_title": "No YouTube Shorts" }, "manifest_version": 3, "default_locale": "en", "permissions": [ "declarativeContent", "storage", "tabs", "management" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "no-youtube-shorts-content-script.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "no-youtube-shorts-background-script.js" }, "icons": { "48": "assets\/img\/logo48.png", "128": "assets\/img\/logo128.png" }, "web_accessible_resources": [ { "resources": [ "assets\/no-youtube-shorts.css" ], "matches": [ "*:\/\/*.youtube.com\/*" ] } ] } |