PIP screen for html5 video

PIP screen for html5 video

What is PIP screen for html5 video?

PIP screen for html5 video is a Chrome extension developed by keisokoo, and its main feature is "PIP screen for html5 video".

Extension Screenshots

screenshot

Download PIP screen for html5 video Extension CRX File

Download PIP screen for html5 video extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        It just find video element(HTML5) and run Picture in picture script on Chrome. that's what i made.
You can also set shortcuts in the extension settings.

----
- 0.0.9.01 :: hot fix, 가끔 지원안되는 부분 수정
- 0.0.9 :: 버그수정, 단축키 추가(와이드스크린 전체화면 꽉차게)
- 0.0.8 :: 광고스킵 단축키기능 (트위치추가(
- 0.0.7 :: 티빙이 html5로 업데이트 하였네요. 이제 가능합니다. 단축키 추가

제가 편하려고 만들었습니다. ^^;
html5 video 기능을 사용하는 사이트라면 대부분 가능합니다.
(pooq, youtube, netflix, vlive, naver tv, afreecatv(html버전), tving, twitch...)

크롬의 PIP기능을 스크립트로 호출하여 사용합니다.
크롬 확장프로그램 화면에(크롬 옵션 - 도구 더보기 -> 확장프로그램 -> 상단 왼쪽 가로줄3개의 메뉴버튼클릭)
단축키 설정도 있습니다. 참고하세요.

자막은 지원하지 않습니다.
자막과 함께 브라우저 자체를 항상 위에 고정하여 쓰길 원한다면 아래의 팁을 참고해주세요^^

**팁 **

윈도우에서 화면 항상위에 고정기능이 필요하다면
https://www.autohotkey.com/
에서 오토핫키(키보드, 마우스 리매핑프로그램) 설치 후
메모장을 열어 아래내용을 한줄 작성합니다

^SPACE::  Winset, Alwaysontop, , A

그리고 ahk확장자로 저장합니다 (예를들면: AlwaysOnTop.ahk)

더블클릭하면 해당 프로세스가 실행되며, (시작프로그램바 우측하단 H모양 아이콘)
컨트롤+스페이스 단축키로 현재창을 고정하거나 해제할 수 있습니다.

시작프로그램에 넣어두고자 한다면
윈도우키+R을 눌러 실행창을 열고
shell:startup

을 입력후에 뜨는 폴더에 해당파일을 넣어주세요.

그리고,
단축키 설정하는 화면으로 가셔서 설정하시면
윈도우창을 주소표시줄 없이 팝업창을 띄우는 것도 가능합니다.                    

Extension Basic Information

Name PIP screen for html5 video PIP screen for html5 video
ID ebgihmollhfickaopoldkikdnipmdemg
Official URL https://chromewebstore.google.com/detail/pip-screen-for-html5-vide/ebgihmollhfickaopoldkikdnipmdemg
Description PIP screen for html5 video
File Size 18.14 KB
Installation Count 22,837
Current Version 0.0.9.01
Last Updated 2019-06-01
Publish Date 2019-05-31
Rating 4.63/5 Total 43 Ratings
Developer keisokoo
Email [email protected]
Payment Type free
Privacy Policy Page URL https://github.com/keisokoo/docs
Supported Languages ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PIP screen for html5 video",
    "version": "0.0.9.01",
    "manifest_version": 2,
    "description": "PIP screen for html5 video",
    "homepage_url": "http:\/\/uncommonine.com",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "On\/Off PIP"
    },
    "permissions": [
        "activeTab"
    ],
    "commands": {
        "runpipscreen": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y",
                "windows": "Ctrl+Shift+Y",
                "mac": "Command+Shift+Y"
            },
            "description": "Turn On\/Off PIP"
        },
        "objectfit": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "windows": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Video fit to inner window size for wide screen(might be works only fullscreen mode)"
        },
        "runpopup": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "windows": "Ctrl+Shift+K",
                "mac": "Command+Shift+K"
            },
            "description": "Popup without address bar"
        },
        "skipad": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "windows": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Skip ad if available(ad video timeline is positioning to at the end)"
        }
    }
}