YouTube Comment Expander
This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.
Τι είναι το YouTube Comment Expander;
Το YouTube Comment Expander είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joel Henke, και η κύρια λειτουργία του είναι "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.".
Λήψη αρχείου CRX της επέκτασης YouTube Comment Expander
Λήψη αρχείων επέκτασης YouTube Comment Expander σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The bug that this extension fixes happens when you start watching a YouTube video and enter full screen before the comments load. The 'Read More' link will be missing for the first several long comments. This extension allows you to read those longer comments without reloading the page or loading more comments.
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube Comment Expander |
ID | bknceopjdngnciilahnddipmpjgmpfhe |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-comment-expander/bknceopjdngnciilahnddipmpjgmpfhe |
Περιγραφή | This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers. |
Μέγεθος Αρχείου | 4.99 KB |
Αριθμός Εγκαταστάσεων | 88 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2017-08-26 |
Ημερομηνία Δημοσίευσης | 2017-08-26 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | Joel Henke |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Comment Expander", "version": "1.0", "description": "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.", "author": "Joel Henke", "permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "48": "icon48.png", "128": "icon128.png" } } |