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."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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\/*.*"
    ]
}