Smart Youtuber

'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…

Smart Youtuber란 무엇입니까?

Smart Youtuber은(는) Mr Foo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by automatically pausing/playing videos in other tabs based on your current tab activity.


The following two-step scenario sums up the application behavior --

Step-1: You are playing some video in tab-1. You now open a new tab-2 and play another video. The application will automatically pause the video in tab-1. 

Step-2: Next, if you pause the tab-2 video, the application will automatically resume the tab-1 video. 

This can extend to any number of tabs or windows.


NOTE: This works only on www.YouTube.com at present. Videos in embedded mode are not supported.                    

확장 프로그램 기본 정보

이름 Smart Youtuber Smart Youtuber
ID inmdnokekflmjbdljfljibopigogoeac
공식 URL https://chrome.google.com/webstore/detail/smart-youtuber/inmdnokekflmjbdljfljibopigogoeac
설명 'Smart Youtuber' is a simple application which is focused on making your YouTube-ing session more convenient. It does so by…
파일 크기 58.92 KB
설치 횟수 73
현재 버전 0.1
최근 업데이트 2016-06-07
출시 날짜 2016-06-07
평점 5.00/5 총 4 개의 평점
개발자 Mr Foo
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Smart Youtuber",
    "version": "0.1",
    "permissions": [
        "contentSettings",
        "tabs"
    ],
    "browser_action": {
        "default_icon": "Smart_Youtuber.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "jquery-2.2.4.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}