Youtube™ Controller

Control Youtube™ videos from any web page

Youtube™ Controller란 무엇입니까?

Youtube™ Controller은(는) https://www.maroun-baydoun.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control Youtube™ videos from any web page"입니다.

확장 프로그램 스크린샷

screenshot

Youtube™ Controller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Play and pause Youtube™ videos from any other web page or even when Chrome is in the background. 

Up to two shortcuts can be set to control video playback. To set shortcuts for this extension, navigate to chrome://extensions/shortcuts                    

확장 프로그램 기본 정보

이름 Youtube™ Controller Youtube™ Controller
ID poalplpedjpddipkghmlhkmgbcnmecop
공식 URL https://chromewebstore.google.com/detail/youtube-controller/poalplpedjpddipkghmlhkmgbcnmecop
설명 Control Youtube™ videos from any web page
파일 크기 33.73 KB
설치 횟수 2,231
현재 버전 2.1.0
최근 업데이트 2021-07-25
출시 날짜 2019-12-12
평점 4.75/5 총 51 개의 평점
개발자 https://www.maroun-baydoun.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/maroun-baydoun/youtube-controller-extension
도움말 페이지 URL https://github.com/maroun-baydoun/youtube-controller-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Maroun Baydoun",
    "version": "2.1.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "icons": {
        "32": "icon-small.png",
        "64": "icon-medium.png",
        "128": "icon-large.png",
        "256": "icon.png"
    },
    "permissions": [
        "tabs",
        "*:\/\/*.youtube.com\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "commands": {
        "toggle-video-1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Toggle first video",
            "global": true
        },
        "toggle-video-2": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Toggle second video",
            "global": true
        }
    }
}