Multiselect for YouTube™

Move, sort, and copy videos in your playlists faster and easier.

Multiselect for YouTube™คืออะไร?

Multiselect for YouTube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Pollux และคุณลักษณะหลักของมันคือ "Move, sort, and copy videos in your playlists faster and easier."

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

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multiselect for YouTube™

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

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

                        This extension will save you a lot of time managing your playlists.
The operation has been simplified so that you can complete your tasks even faster.
Additional features you've been waiting for.

✔️ Supports the new interface Manifest V3
✔️ The user experience has been redesigned from the ground up
✔️ Same display dark/light as in YouTube™
✔️ Selected videos are clearly highlighted
✔️ Icon button to toggle multiple selection on/off
✔️ Action bar
✔️ Context menu
🚀 Keyboard navigation
🚀 Copy, cut and paste videos
✨ Find duplicates
🎁 Select videos with title filter                    

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

ชื่อ Multiselect for YouTube™ Multiselect for YouTube™
ID gpgbiinpmelaihndlegbgfkmnpofgfei
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multiselect-for-youtube/gpgbiinpmelaihndlegbgfkmnpofgfei
คำอธิบาย Move, sort, and copy videos in your playlists faster and easier.
ขนาดไฟล์ 94.04 KB
จำนวนการติดตั้ง 28,642
เวอร์ชันปัจจุบัน 3.5
อัปเดตครั้งล่าสุด 2023-12-19
วันที่เผยแพร่ 2020-10-20
คะแนน 4.04/5 รวมทั้งหมด 385 คะแนน
ผู้พัฒนา Pollux
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ms4yt.com/
URL หน้านโยบายความเป็นส่วนตัว https://ms4yt.com/privacy_policy.php
ภาษาที่รองรับ de,en,fr,tr,es,it,pl,pt-BR,pt-PT,ru,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": {
            "24": "icons\/24.png",
            "48": "icons\/48.png"
        },
        "default_popup": "popup.html"
    },
    "author": "Pollux",
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggleMultiSelectMode": {
            "description": "__MSG_toggleMultiSelectMode__",
            "suggested_key": {
                "default": "Ctrl+Q"
            }
        },
        "togglePlaylistGuide": {
            "description": "Playlist-Guide umschalten",
            "suggested_key": {
                "default": "Ctrl+I"
            }
        }
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "https:\/\/www.youtube.com\/error?*",
                "https:\/\/www.youtube.com\/howyoutubeworks\/*",
                "https:\/\/www.youtube.com\/intl\/*",
                "https:\/\/www.youtube.com\/kids\/*",
                "https:\/\/www.youtube.com\/live_chat?*",
                "https:\/\/www.youtube.com\/pop-up-player\/*"
            ],
            "js": [
                "js\/start.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "css": [
                "css\/main.css"
            ],
            "exclude_matches": [
                "https:\/\/www.youtube.com\/error?*",
                "https:\/\/www.youtube.com\/howyoutubeworks\/*",
                "https:\/\/www.youtube.com\/intl\/*",
                "https:\/\/www.youtube.com\/kids\/*",
                "https:\/\/www.youtube.com\/live_chat?*",
                "https:\/\/www.youtube.com\/pop-up-player\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "icons": {
        "128": "icons\/128.png",
        "24": "icons\/24.png",
        "48": "icons\/48.png",
        "96": "icons\/96.png"
    },
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ],
    "version": "3.5",
    "web_accessible_resources": [
        {
            "resources": [
                "js\/polymer.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}