Multi-Tab Controller for YouTube

Play or Pause any inactive YouTube video tab from any active tab, while viewing other pages online.

Multi-Tab Controller for YouTubeคืออะไร?

Multi-Tab Controller for YouTube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://andrew-flower.com และคุณลักษณะหลักของมันคือ "Play or Pause any inactive YouTube video tab from any active tab, while viewing other pages online."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Multi-Tab Controller for YouTube

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

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

                        Pause, play skip, rewind YouTube videos from the extension popup.

If you would like to control YouTube videos while browsing the web in another tab, you need this extension.  

It's common these days to listen to music, presentations or Podcasts on YouTube while browsing the web and not necessarily watch the video.   Sometimes, you may leave your desk, need to concentrate or chat with a colleague, and changing to the correct YouTube tab in order to pause the video may be troublesome or embarrassing.   

This plugin solves that problem, by allowing you to pause and play again from any tab. In addition, there is a button to jump back (rewind) the video by 15 seconds if you lost concentration for example.  Additionally you can jump to the next or previous video in the current playlist.

Features (from popup):
* Play / Pause YouTube videos from any tab
* Jump to Next / Previous video
* Jump to beginning of video
* Skip forward / backward 15 seconds
* Close or Jump to YouTube tabs from the extension popup

Suggestions and bug-reports are very welcome!                    

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

ชื่อ Multi-Tab Controller for YouTube Multi-Tab Controller for YouTube
ID jmhlhicfnbopnflmpgdbeicgooafepli
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/multi-tab-controller-for/jmhlhicfnbopnflmpgdbeicgooafepli
คำอธิบาย Play or Pause any inactive YouTube video tab from any active tab, while viewing other pages online.
ขนาดไฟล์ 97.44 KB
จำนวนการติดตั้ง 2,569
เวอร์ชันปัจจุบัน 1.6.0
อัปเดตครั้งล่าสุด 2019-09-19
วันที่เผยแพร่ 2019-09-18
คะแนน 4.53/5 รวมทั้งหมด 64 คะแนน
ผู้พัฒนา https://andrew-flower.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://andrew-flower.com/projects/MTC/
ภาษาที่รองรับ en,en-GB,en-US,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Andrew Flower",
    "version": "1.6.0",
    "icons": {
        "32": "icons\/icon.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "script\/content\/sync_state.js",
                "script\/content\/youtube_video.js",
                "script\/content\/video_commands.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "script\/inject\/movie_player_interface.js"
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "*:\/\/*.youtube.com\/*"
    ],
    "minimum_chrome_version": "49"
}