uPin

Pin a YouTube video while the rest of the page scrolls.

uPin là gì?

uPin là một tiện ích mở rộng Chrome được phát triển bởi https://electricitymachine.com, và tính năng chính của nó là "Pin a YouTube video while the rest of the page scrolls.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng uPin

Tải xuống các tệp mở rộng uPin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        
uPin is for pinning a YouTube video while the rest of the page scrolls - like when you are looking through the videos list on the right and you can hear but not see the main video - this uPin fixes that by making the video stay put where it is originally..

ver5 (0.0.0.5) using the position: sticky css this time, far more fluid/hyper

ver4 brought back the chat,, the css selectors have changed,,, good job youtube editors in general, this gets a little easier each time

ver3 after the changes at YouTube i had to re-edit the CSS..
no dotted lines, no spiffy scrollbars, no reference to ads,,

there is an advantage that uPin has as one of its features compared to the various Pop Out or Pop Up or PIP Picture in Picture extensions - and this has to do with the owner of the video/stream sometimes specifies that the video/stream must be watched in the context of the original YouTube page, and so what happens if you try and use one of these other Pops or Pips is the video player goes black and it reads: "Watch this video on YouTube. Playback on other websites has been disabled by the video owner." This does not happen in uPin,,

basically the video holds still while you can scroll up and down the page, the YouTube List pages are ignored by uPin
                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên uPin uPin
ID milkbfdjncjmafjflcjpodieeabiidak
URL Chính Thức https://chromewebstore.google.com/detail/upin/milkbfdjncjmafjflcjpodieeabiidak
Mô tả Pin a YouTube video while the rest of the page scrolls.
Kích Thước Tệp 41.29 KB
Số Lần Cài Đặt 81
Phiên Bản Hiện Tại 0.0.0.5
Cập Nhật Lần Cuối 2017-10-26
Ngày Phát Hành 2017-10-26
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://electricitymachine.com
Loại Thanh Toán free
Trang Web Mở Rộng http://electricitymachine.com/upin/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "uPin",
    "homepage_url": "http:\/\/electricitymachine.com\/upin\/",
    "description": "Pin a YouTube video while the rest of the page scrolls.",
    "version": "0.0.0.5",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "19x19.png",
        "default_popup": "upin.html",
        "default_title": "uPin"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/watch?v=*",
                "https:\/\/www.youtube.com\/watch?v=*"
            ],
            "exclude_matches": [
                "*:\/\/*\/*results*",
                "*:\/\/*\/*search_query*"
            ],
            "include_globs": [
                "*youtube.com\/watch?v=???????????*"
            ],
            "exclude_globs": [
                "*&list=*",
                "*watch?list=*",
                "*watch?v=*&list=*",
                "*results*",
                "*search_query=*"
            ],
            "css": [
                "upin.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "upin.css"
    ],
    "icons": {
        "32": "32x32.png",
        "128": "128x128.png",
        "48": "48x48.png",
        "38": "38x38.png",
        "19": "19x19.png",
        "16": "16x16.png"
    }
}