Youtube Shorts Slider

Automatically swipes to the next YouTube Shorts for an uninterrupted viewing experience.

Youtube Shorts Sliderคืออะไร?

Youtube Shorts Slider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sean Baek และคุณลักษณะหลักของมันคือ "Automatically swipes to the next YouTube Shorts for an uninterrupted viewing experience."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Shorts Slider

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Shorts Slider ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Youtube Shorts Slider: Your Enhanced YouTube Shorts Experience
 
Key Features:

Automatic Swiping: The extension enables easy browsing by automatically moving you to the next Short.
Continuous Playback: Each Short smoothly leads into the next, providing an uninterrupted viewing experience.
Custom Settings: You have the flexibility to turn the automatic swiping feature on or off, tailoring it to your personal viewing style.


Youtube Shorts Slider: 유튜브 쇼츠 경험을 개선하는 크롬 확장 프로그램

설명:
유튜브 쇼츠 슬라이더는 유튜브 쇼츠를 더욱 쉽고 효율적으로 즐길 수 있게 해주는 크롬 확장 프로그램입니다. 이를 통해 수동으로 쇼츠를 넘기는 번거로움 없이 자동으로 다음 쇼츠로 이동할 수 있습니다.

주요 기능:

자동 넘김: 자동으로 쇼츠를 넘겨주어 손쉬운 탐색을 가능하게 합니다.
연속 재생: 각 쇼츠가 서로 부드럽게 이어져 중단 없는 시청 경험을 제공합니다.
맞춤 설정: 자동 넘김 기능을 켜거나 끌 수 있어, 개인의 시청 스타일에 맞게 조절할 수 있습니다.
유튜브 쇼츠 슬라이더는 한 번의 클릭으로 활성화되며, 유튜브 쇼츠 시청을 더욱 즐겁고 편리하게 만들어줍니다.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Shorts Slider Youtube Shorts Slider
ID jpbaolamamjehiljcjdibbcmkdgkjidb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-shorts-slider/jpbaolamamjehiljcjdibbcmkdgkjidb
คำอธิบาย Automatically swipes to the next YouTube Shorts for an uninterrupted viewing experience.
ขนาดไฟล์ 38.11 KB
จำนวนการติดตั้ง 26
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2024-01-31
วันที่เผยแพร่ 2023-11-21
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Sean Baek
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Youtube Shorts Slider",
    "version": "1.0",
    "description": "Automatically swipes to the next YouTube Shorts for an uninterrupted viewing experience.",
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/shorts\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    }
}