Youtube Shorts Auto Scroll - Productivity++
Automatically scrolls when a Youtube Short ends.
ما هو Youtube Shorts Auto Scroll - Productivity++؟
Youtube Shorts Auto Scroll - Productivity++ هو إضافة Chrome تم تطويرها بواسطة Productivity ++، والميزة الرئيسية لها هي "Automatically scrolls when a Youtube Short ends.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Youtube Shorts Auto Scroll - Productivity++
قم بتنزيل ملفات الامتداد Youtube Shorts Auto Scroll - Productivity++ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
You can also change weather it automatically scrolls in the popup. Instructions will be given when the extension is installed! Made with ❤️ from the team at Productivity ++. New version: Fixed bug where if you were on YouTube and then went to a short, it wouldn't work until reload. Other bugs fixed
معلومات أساسية عن التمديد
الاسم | Youtube Shorts Auto Scroll - Productivity++ |
ID | bmjbgjndjeinofbgoanhkdgeclbfdbpm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/youtube-shorts-auto-scrol/bmjbgjndjeinofbgoanhkdgeclbfdbpm |
الوصف | Automatically scrolls when a Youtube Short ends. |
حجم الملف | 618 KB |
عدد التثبيتات | 332 |
النسخة الحالية | 69.420 |
آخر تحديث | 2023-05-30 |
تاريخ النشر | 2023-05-29 |
تقييم | 3.67/5 مجموع تقييمات 3 |
المطور | Productivity ++ |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Shorts Auto Scroll - Productivity++", "version": "69.420", "author": { "email": "[email protected]" }, "description": "Automatically scrolls when a Youtube Short ends.", "action": { "default_icon": { "16": "icons\/16.png", "24": "icons\/24.png", "32": "icons\/32.png" }, "default_title": "YT Shorts Autoscroll", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "scroll-plain.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "128": "icon.png" }, "permissions": [ "scripting", "activeTab" ] } |