YT Auto Load More
Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.
ما هو YT Auto Load More؟
YT Auto Load More هو إضافة Chrome تم تطويرها بواسطة Ricardo Antunes، والميزة الرئيسية لها هي "Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة YT Auto Load More
قم بتنزيل ملفات الامتداد YT Auto Load More بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
A chrome extension to automatically load items on Youtube(tm)'s pages (videos, playlist videos, comments, etc). Click the icon at the upper right to start/pause loading the items. Source code is available at https://github.com/rantunes1/yt-load-more-items
معلومات أساسية عن التمديد
الاسم | YT Auto Load More |
ID | illnlopnlfnmdbanolhbjihgeliaakdl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/yt-auto-load-more/illnlopnlfnmdbanolhbjihgeliaakdl |
الوصف | Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages. |
حجم الملف | 22.16 KB |
عدد التثبيتات | 379 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2018-07-10 |
تاريخ النشر | 2018-07-10 |
تقييم | 3.44/5 مجموع تقييمات 18 |
المطور | Ricardo Antunes |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/rantunes1/yt-load-more-items/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "short_name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "version": "1.1.1", "author": "Ricardo Antunes", "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "exclude_matches": [ "*:\/\/*.youtube.com\/embed\/*" ], "js": [ "scripts\/yt-load-more-items.js" ], "css": [ "styles\/yt-load-more-items.css" ] } ], "web_accessible_resources": [ "images\/*.*" ] } |