Video Tape

Allows you to tape most videos to the window so you can scroll around or read on while the video plays on screen.

Video Tapeคืออะไร?

Video Tape เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sam Larison และคุณลักษณะหลักของมันคือ "Allows you to tape most videos to the window so you can scroll around or read on while the video plays on screen."

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

screenshot
screenshot
screenshot

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

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

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

                        When installing Video Tape you automatically agree to the terms of use which may be viewed any time from the options screen of Video Tape.  

Allows you to tape most videos to the window's edges so you can scroll down while the video plays on screen.

BETA EXTENSION do not install unless you know what you are doing and will report bugs before reviewing.  Thanks!

After installation: you will have to refresh any pages that you would like to use VideoTape on - these pages should have videos on them - usually multiple videos - you  may have to try a few.

History: Video Tape is the culmination of several iterations.  This is the history of Video Tape (largely unreleased)
VidzFixed, Flash Stick, VideoTape.  It is also loosely tied to the concepts that were released in one of my first web extensions VidzBigger (which no longer works)

Needed:
Override z-index without modifying DOM structure, OR flash video does not restart playing when it's position in DOM structure is modified.

Sometimes the fixed position video becomes unclickable or you can click right through it, so you cannot pause it or modify volume.  You will have to return it to it's original position on the page by clicking it again in these cases.

Changing video css position from anything to fixed may sometimes make video start over again :/  Sorry for inconvenience!

in about:flags you might try the option 
"Fixed position elements create stacking contexts"

Thank You for trying Video Tape!

- - - - - - - - - - - -                    

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

ชื่อ Video Tape Video Tape
ID lkkdmddhgagekfkngjpldinmkjbfcfab
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/video-tape/lkkdmddhgagekfkngjpldinmkjbfcfab
คำอธิบาย Allows you to tape most videos to the window so you can scroll around or read on while the video plays on screen.
ขนาดไฟล์ 69.78 KB
จำนวนการติดตั้ง 3,068
เวอร์ชันปัจจุบัน 0.0.2.12
อัปเดตครั้งล่าสุด 2019-11-27
วันที่เผยแพร่ 2019-11-24
คะแนน 3.39/5 รวมทั้งหมด 44 คะแนน
ผู้พัฒนา Sam Larison
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://vidsbee.com/ColorPick/Privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "description": "Allows you to tape most videos to the window so you can scroll around or read on while the video plays on screen.",
    "name": "Video Tape",
    "content_scripts": [
        {
            "js": [
                "Cr_min.js",
                "vidstick.user.js"
            ],
            "run_at": "document_idle",
            "matches": [
                ""
            ]
        },
        {
            "css": [
                "video-sticky-tape-embeded-full-height.user.css"
            ],
            "matches": [
                "*:\/\/*.redditmedia.com\/mediaembed\/*"
            ],
            "all_frames": true
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/inactive\/icon19.png",
            "38": "images\/inactive\/icon38.png"
        },
        "default_title": "VideoTape",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "vidstick.user.css"
    ],
    "permissions": [
        "",
        "tabs"
    ],
    "version": "0.0.2.12"
}