PIP screen for html5 video

PIP screen for html5 video

Co to jest PIP screen for html5 video?

PIP screen for html5 video to rozszerzenie Chrome opracowane przez keisokoo, a jego główną funkcją jest „PIP screen for html5 video”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PIP screen for html5 video

Pobierz pliki rozszerzeń PIP screen for html5 video w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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

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

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

Podstawowe informacje o rozszerzeniu

Nazwa PIP screen for html5 video PIP screen for html5 video
ID ebgihmollhfickaopoldkikdnipmdemg
Oficjalny URL https://chromewebstore.google.com/detail/pip-screen-for-html5-vide/ebgihmollhfickaopoldkikdnipmdemg
Opis PIP screen for html5 video
Rozmiar pliku 18.14 KB
Liczba instalacji 22,837
Aktualna Wersja 0.0.9.01
Ostatnia Aktualizacja 2019-06-01
Data Publikacji 2019-05-31
Ocena 4.63/5 Łącznie 43 Oceny
Deweloper keisokoo
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/keisokoo/docs
Obsługiwane Języki 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)"
        }
    }
}