YouTube Tab Switch

No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing

YouTube Tab Switchคืออะไร?

YouTube Tab Switch เป็นส่วนขยายของ Chrome ที่พัฒนาโดย seungguini และคุณลักษณะหลักของมันคือ "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing"

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Tab Switch

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

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

                        No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that one (and only one) video is always playing! Ever had to constantly switch between multiple YouTube video tabs when pausing a tutorial to play some music while taking notes? Ever open a new video tabs to watch later, only to lose track and have a cacophony of audio? This Extension helps you focus on the video YOU want to watch with two core functions:
1. When you play a YouTube video, all other YouTube videos on different tabs and windows are paused.
2. When you pause a video, the most-recently played video plays automatically in the background, allowing you to have a constant stream of sound                    

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

ชื่อ YouTube Tab Switch YouTube Tab Switch
ID ffbfmnpnnpioeahopelpofkgdnoglkom
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-tab-switch/ffbfmnpnnpioeahopelpofkgdnoglkom
คำอธิบาย No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing
ขนาดไฟล์ 694 KB
จำนวนการติดตั้ง 32
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2020-01-28
วันที่เผยแพร่ 2020-01-27
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา seungguini
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://github.com/seungguini/youtube-tab-switch
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Tab Switch",
    "description": "No matter how many YouTube video tabs are open, YouTube Tab Switch ensures that only one video is always playing",
    "version": "1.0",
    "icons": {
        "128": "img\/icon128.png",
        "32": "img\/icon32.png",
        "16": "img\/icon16.png"
    },
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html",
        "default_title": "Youtube Tab Switch"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js",
                "lib\/jquery-3.4.1.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/*",
        "storage"
    ]
}