Expander for YouTube

This plugin implements the possibility to control size of YouTube's player

Expander for YouTube란 무엇입니까?

Expander for YouTube은(는) KhAS에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin implements the possibility to control size of YouTube's player"입니다.

확장 프로그램 스크린샷

screenshot

Expander for YouTube 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin allows you to easily change the size of the video in Youtube, even using the mouse wheel. When switching between video video size remains constant.

Этот плагин позволяет вам легко изменять размер видео в Youtube, используя даже колесо мыши. При переходе между видеозаписями размер видео остается постоянным.                    

확장 프로그램 기본 정보

이름 Expander for YouTube Expander for YouTube
ID chajepccdlakdepgeiegefbemmpaogdo
공식 URL https://chrome.google.com/webstore/detail/expander-for-youtube/chajepccdlakdepgeiegefbemmpaogdo
설명 This plugin implements the possibility to control size of YouTube's player
파일 크기 51.98 KB
설치 횟수 27
현재 버전 0.12
최근 업데이트 2013-08-26
출시 날짜 2013-08-26
평점 1.00/5 총 1 개의 평점
개발자 KhAS
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "This plugin implements the possibility to control size of YouTube's player",
    "name": "Expander for YouTube",
    "version": "0.12",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*"
    ],
    "icons": {
        "128": "icons\/logo128.png",
        "48": "icons\/logo48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "jquery.mousewheel.js",
                "jquery.hashchange.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "http:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "run_at": "document_end"
        }
    ]
}