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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
URL страницы помощи | 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\/*.*" ] } |