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是由Ricardo Antunes开发的Chrome扩展程序,该扩展的主要功能是“Automatically loads more items (comments, videos, playlists, etc.) on YouTube(tm)'s pages.”。

扩展截图

screenshot

下载YT Auto Load More扩展crx文件

下载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 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\/*.*"
    ]
}