Popout for YouTube™

Add a button to YouTube™ to pop the video out into a new resizable window.

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

Popout for YouTube™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Justin Force และคุณลักษณะหลักของมันคือ "Add a button to YouTube™ to pop the video out into a new resizable window."

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

screenshot
screenshot

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

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

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

                        Add a button to YouTube™ videos to pop the video out into its own window. The resulting window contains the full YouTube™ player with all controls for quality, closed captioning, full screen etc. that can be resized to scale the video. Each video gets its own window, so you can open as many videos as you like.

Questions? Bugs? Please let me know on GitHub! https://github.com/justinforce/popout_for_youtube/issues

This extension can access?

- Your data on www.youtube.com: This is so that the extension can parse the YouTube™ page that you're viewing so that it can clone the video.
- Your browsing history: This is so that the extension can open a new tab so that the video can occupy it.
- NONE of your data is collected or used by this extension. The warnings are part of Google Chrome™'s extension API. The full source of this extension is viewable at its website. Please review the source code or post a comment if you have any questions.                    

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

ชื่อ Popout for YouTube™ Popout for YouTube™
ID pofekaindcmmojfnfgbpklepkjfilcep
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/popout-for-youtube/pofekaindcmmojfnfgbpklepkjfilcep
คำอธิบาย Add a button to YouTube™ to pop the video out into a new resizable window.
ขนาดไฟล์ 21.31 KB
จำนวนการติดตั้ง 58,778
เวอร์ชันปัจจุบัน 5.1.4
อัปเดตครั้งล่าสุด 2020-04-27
วันที่เผยแพร่ 2020-04-24
คะแนน 3.78/5 รวมทั้งหมด 548 คะแนน
ผู้พัฒนา Justin Force
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/justinforce/popout_for_youtube
URL หน้าช่วยเหลือ http://github.com/justinforce/popout_for_youtube/issues
ภาษาที่รองรับ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "5.1.4",
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "content_security_policy": "script-src 'unsafe-eval' 'self' https:\/\/www.youtube.com https:\/\/s.ytimg.com https:\/\/ssl.google-analytics.com; object-src 'self'",
    "background": {
        "scripts": [
            "analytics.js",
            "lib\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "lib\/popout_for_youtube.js"
            ],
            "css": [
                "popout_for_youtube.css"
            ]
        }
    ],
    "icons": {
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}