YouTube Autoplay Disabler
Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.
ما هو YouTube Autoplay Disabler؟
YouTube Autoplay Disabler هو إضافة Chrome تم تطويرها بواسطة Luciano Ratamero، والميزة الرئيسية لها هي "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YouTube Autoplay Disabler
قم بتنزيل ملفات الامتداد YouTube Autoplay Disabler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Free and open-sourced alternative for disabling YouTube's autoplay "feature" Checks if YouTube autoplay is on and, if it is, disables it. https://github.com/lucianoratamero/youtube-autoplay-disabler
معلومات أساسية عن التمديد
الاسم | YouTube Autoplay Disabler |
ID | mlebignjhimfeggkjhhgbhomibiplmem |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-autoplay-disabler/mlebignjhimfeggkjhhgbhomibiplmem |
الوصف | Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done. |
حجم الملف | 366 KB |
عدد التثبيتات | 161 |
النسخة الحالية | 0.2.1 |
آخر تحديث | 2021-04-29 |
تاريخ النشر | 2018-06-15 |
تقييم | 3.12/5 مجموع تقييمات 17 |
المطور | Luciano Ratamero |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Autoplay Disabler", "description": "Extension to disable YouTube's autoplay 'feature'. This implementation is pragmatic, so no fancy code: we just get the job done.", "version": "0.2.1", "icons": { "128": "icon-small.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "browser_action": { "default_icon": "icon-small.png" } } |