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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*.*"
    ]
}