YT Auto Load More

Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.

What is YT Auto Load More?

YT Auto Load More is a Chrome extension developed by Ricardo Antunes, and its main feature is "Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.".

Extension Screenshots

screenshot

Download YT Auto Load More Extension CRX File

Download YT Auto Load More extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name YT Auto Load More YT Auto Load More
ID illnlopnlfnmdbanolhbjihgeliaakdl
Official URL https://chromewebstore.google.com/detail/yt-auto-load-more/illnlopnlfnmdbanolhbjihgeliaakdl
Description Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.
File Size 22.16 KB
Installation Count 379
Current Version 1.1.1
Last Updated 2018-07-10
Publish Date 2018-07-10
Rating 3.44/5 Total 18 Ratings
Developer Ricardo Antunes
Email [email protected]
Payment Type free
Help Page URL https://github.com/rantunes1/yt-load-more-items/issues
Supported Languages 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\/*.*"
    ]
}