Stop Youtube Autoplay
This extension allows you to disable autoplay by default on Youtube
ما هو Stop Youtube Autoplay؟
Stop Youtube Autoplay هو إضافة Chrome تم تطويرها بواسطة Joseph Feld، والميزة الرئيسية لها هي "This extension allows you to disable autoplay by default on Youtube".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Stop Youtube Autoplay
قم بتنزيل ملفات الامتداد Stop Youtube Autoplay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This extension automatically disables the feature where Youtube will automatically play the next suggested video. You can just click it off manually, but you need to remember to do that every time and it wastes precious seconds you could be using to watch more Youtube. There is also an option to permanently enable autoplay (if you actually want autoplay on) by flipping the switch in the extension popup. Feel free to contact me if you find any issues or have any suggestions. This extension is not intended to stop videos from automatically playing when you open a new tab. It only stops the next suggested video from playing.
معلومات أساسية عن التمديد
الاسم | |
ID | npcghnpganhnghapekiicaeiobnhbbfa |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/stop-youtube-autoplay/npcghnpganhnghapekiicaeiobnhbbfa |
الوصف | This extension allows you to disable autoplay by default on Youtube |
حجم الملف | 41.84 KB |
عدد التثبيتات | 5,000 |
النسخة الحالية | 1.3 |
آخر تحديث | 2018-10-29 |
تاريخ النشر | 2018-10-29 |
تقييم | 3.02/5 مجموع تقييمات 60 |
المطور | Joseph Feld |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stop Youtube Autoplay", "short_name": "No Autoplay", "description": "This extension allows you to disable autoplay by default on Youtube", "version": "1.3", "browser_action": { "default_icon": "icon128.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "https:\/\/www.youtube.com\/*", "http:\/\/www.youtube.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "matches": [ "https:\/\/www.youtube.com\/watch*", "http:\/\/www.youtube.com\/watch*" ], "scripts": [ "background.js" ], "persistent": false } } |