Windowed - floating Youtube/every website

Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix

Windowed - floating Youtube/every websiteคืออะไร?

Windowed - floating Youtube/every website เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Michiel Dral และคุณลักษณะหลักของมันคือ "Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Windowed - floating Youtube/every website

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

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

                        Changes fullscreen buttons so they will put a window around the fullscreen app. This allows you to put a Youtube video about a subject next to the paper you are writing or watch a show on Netflix while chatting. This extension will not reload the video you are watching, nor use some custom controls: it puts the website in its own fullscreen mode. Now also supports Picture-in-Picture mode when fullscreening a video, but this takes away the websites video controls.

---
This extension requires "Read sites data" permission to function, but you can right-click the extension icon, click "This Can Read and Change Site Data" and enable it only for websites that you are comfortable with. Also the source is open, so you can read that no data is actually read or changed by this extension :)
---

It will present you with a small menu when you click fullscreen, so you can choose to go fullscreen or windowed.

Some of the website confirmed to work:
- Youtube
- Netflix
- Twitch
- Vimeo
- NFL Gamepass
- Facebook
- Most other websites...

Does not work on
- Flash videos (these are outside of the scope of browser extensions, I tried)
- Videos with native html controls (as they use native fullscreen, not javascript fullscreen)

It is possible there are websites where this does not work, even though they are not flash. If you happen to find one, please let me know! :)

Firefox extension: https://addons.mozilla.org/nl/firefox/addon/windowed/
Source code: https://github.com/dralletje/windowed

🤨  🤩  🤤  🧛🏻‍♂️ 🦄
Michiel Dral                    

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

ชื่อ Windowed - floating Youtube/every website Windowed - floating Youtube/every website
ID gibipneadnbflmkebnmcbgjdkngkbklb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/windowed-floating-youtube/gibipneadnbflmkebnmcbgjdkngkbklb
คำอธิบาย Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix
ขนาดไฟล์ 50.63 KB
จำนวนการติดตั้ง 53,170
เวอร์ชันปัจจุบัน 28
อัปเดตครั้งล่าสุด 2021-01-01
วันที่เผยแพร่ 2019-09-18
คะแนน 4.54/5 รวมทั้งหมด 284 คะแนน
ผู้พัฒนา Michiel Dral
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/dralletje/windowed
URL หน้าช่วยเหลือ https://github.com/dralletje/windowed/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Windowed - floating Youtube\/every website",
    "short_name": "Windowed",
    "description": "Changes fullscreen buttons to go into a popup. Works for every website that uses fullscreen, including Youtube, Vimeo, Netflix",
    "developer": {
        "name": "Michiel Dral",
        "url": "https:\/\/dral.eu\/"
    },
    "version": "28",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "tabs",
        ""
    ],
    "applications": {
        "gecko": {
            "id": "{477dbe5e-1742-4641-a2c3-b6113bb5cf6e}"
        }
    },
    "browser_action": {
        "default_popup": "Popup\/Popup.html",
        "default_icon": {
            "32": "\/Images\/[email protected]"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "Vendor\/browser-polyfill.min.js",
                "Content.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "Vendor\/browser-polyfill.min.js",
            "Background\/BackgroundEntry.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "Images\/*"
    ],
    "icons": {
        "16": "Icons\/Icon_16.png",
        "32": "Icons\/Icon_32.png",
        "64": "Icons\/Icon_64.png",
        "128": "Icons\/Icon_128.png"
    }
}