Youtube Video Box

This extension plays youtube video running from any tab in your current tab

Youtube Video Boxคืออะไร?

Youtube Video Box เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ExtensionsHub และคุณลักษณะหลักของมันคือ "This extension plays youtube video running from any tab in your current tab"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        View your favorite Youtube Video playing in any tab in any window in the current tab.

If your work involves you to work on a single tab of the browser and you want to watch videos while working or you like watching videos while doing any other relevant work on the browser then you have reached at the correct destination.

From your current tab, Youtube video box will detect the tabs running youtube video in any of your Chrome browser window and will provide you options to control tab playing youtube video. Specifically it provides a "Show Video" option which will open a draggable and resizable video box on the screen which will play the running youtube video from the same time. Along with this, you will get various options to control the video box and youtube tab.

New features in this version -
* A new Chrome App with which you can view the Youtube Video on any screen of your computer. Download the App from https://github.com/shubham234/Youtube-Video-Box-App.

What's coming next -
* More options with New Youtube Video Box App.
* Whatever you will ask, we will try to do. Let us know what new feature you want.                    

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

ชื่อ Youtube Video Box Youtube Video Box
ID dokdgfodmeaaamnbpbaomjcidljofpio
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-video-box/dokdgfodmeaaamnbpbaomjcidljofpio
คำอธิบาย This extension plays youtube video running from any tab in your current tab
ขนาดไฟล์ 167 KB
จำนวนการติดตั้ง 583
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2021-07-06
วันที่เผยแพร่ 2017-11-09
คะแนน 3.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา ExtensionsHub
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Video Box",
    "description": "This extension plays youtube video running from any tab in your current tab",
    "version": "1.4",
    "browser_action": {
        "default_icon": "assets\/youtubeImage.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com;assets-cdn.github.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "contentscripts\/youtubecontrols.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "resources\/jquery-ui.min.css"
            ],
            "js": [
                "resources\/jquery-3.2.1.min.js",
                "resources\/jquery-ui.min.js",
                "resources\/iframe_api.js",
                "contentscripts\/youtubebox.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/close.png"
    ]
}