PocketMonitor

Because one size does not fit all. PocketMonitor creates a new video at the top with scaleable video size to maximize the amount…

PocketMonitor란 무엇입니까?

PocketMonitor은(는) jonathantsang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Because one size does not fit all. PocketMonitor creates a new video at the top with scaleable video size to maximize the amount…"입니다.

확장 프로그램 스크린샷

screenshot

PocketMonitor 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Because one size does not fit all.

PocketMonitor creates a new video at the top with scaleable video size to maximize the amount of viewing space. in a new tab, the video is opened that is scalable to the browser size.

Steps:

1. Go to YouTube video page
2. Click the PocketMonitor Icon
3. Full Screen video!

Youtube currently has theater mode alongside full-screen video sizes, but other than that, there is no size for in-between. In many cases people use full-screen alongside multiple monitors, but in some cases if you don't have another monitor, you would need to suffice to one of these three sizes.

I made PocketMonitor because I wanted to have a quick or working way for Youtube videos to be resized based on the web browser size.                    

확장 프로그램 기본 정보

이름 PocketMonitor PocketMonitor
ID okcaoddgdgnnoehbamegnpjajchkjing
공식 URL https://chrome.google.com/webstore/detail/pocketmonitor/okcaoddgdgnnoehbamegnpjajchkjing
설명 Because one size does not fit all. PocketMonitor creates a new video at the top with scaleable video size to maximize the amount…
파일 크기 1.08 MB
설치 횟수 14
현재 버전 1.3
최근 업데이트 2017-03-07
출시 날짜 2017-03-07
평점 5.00/5 총 2 개의 평점
개발자 jonathantsang
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PocketMonitor",
    "short_name": "PM",
    "version": "1.3",
    "browser_action": {
        "default_icon": "mon.png"
    },
    "icons": {
        "16": "mon.png",
        "48": "mon.png",
        "128": "mon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "scripts\/jquery-3.1.1.min.js",
                "scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "tabs"
    ]
}