Toggle YouTube Comments
Hides YouTube comments by default
ما هو Toggle YouTube Comments؟
Toggle YouTube Comments هو إضافة Chrome تم تطويرها بواسطة Dennis & Friends، والميزة الرئيسية لها هي "Hides YouTube comments by default".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Toggle YouTube Comments
قم بتنزيل ملفات الامتداد Toggle YouTube Comments بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Add this lightweight extension to disable/enable YouTube comments. • Works with the new and old YouTube • Flexibility to easily hide or show comments • Blends in with YouTube's user interface • Shows number of comments when hidden • No tracking, your privacy is important • Extremely small size - no bloat • Actively maintained • Open source code See https://git.io/v5RgW for release notes.
معلومات أساسية عن التمديد
الاسم | |
ID | ampjnmipdgicjjidohpkidhghakoidfm |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/toggle%C2%A0youtube%C2%A0comments/ampjnmipdgicjjidohpkidhghakoidfm |
الوصف | Hides YouTube comments by default |
حجم الملف | 8.03 KB |
عدد التثبيتات | 479 |
النسخة الحالية | 4.1.3 |
آخر تحديث | 2019-05-06 |
تاريخ النشر | 2019-05-06 |
تقييم | 3.68/5 مجموع تقييمات 38 |
المطور | Dennis & Friends |
نوع الدفع | free |
موقع الإضافة | https://github.com/dideler/toggle-youtube-comments |
عنوان صفحة المساعدة | https://github.com/dideler/toggle-youtube-comments |
اللغات المدعومة | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_desc__", "version": "4.1.3", "default_locale": "en", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "128": "icons\/128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "script.js" ], "css": [ "youtube.css" ], "run_at": "document_end" } ] } |