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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |