YouTube progress in tab (favicon)

Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused

YouTube progress in tab (favicon)란 무엇입니까?

YouTube progress in tab (favicon)은(는) Andrei에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused"입니다.

확장 프로그램 스크린샷

screenshot

YouTube progress in tab (favicon) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        0.3:
 - Favicon now changes the white "play" symbol white a "pause" symbol when video is paused/stopped
 - Progress bar for playing videos is now red
 - Added a white background to the progress bar for better visibility

0.2:
 - Paused/stopped videos now have a greyed out progress bar

0.1:
 - Initial release                    

확장 프로그램 기본 정보

이름 YouTube progress in tab (favicon) YouTube progress in tab (favicon)
ID ocihcnaifpkaceaiiokcimplnnlanifp
공식 URL https://chrome.google.com/webstore/detail/youtube-progress-in-tab-f/ocihcnaifpkaceaiiokcimplnnlanifp
설명 Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused
파일 크기 8.26 KB
설치 횟수 678
현재 버전 0.3
최근 업데이트 2018-02-10
출시 날짜 2018-02-10
평점 2.08/5 총 13 개의 평점
개발자 Andrei
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube progress in tab (favicon)",
    "description": "Shows the progress of the video as a bar in the tab by changing the favicon. It also shows if the video is playing or is paused",
    "version": "0.3",
    "icons": {
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/watch*"
            ],
            "js": [
                "functions.js",
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "functions.js",
                "changedefaultfavicon.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "event.js"
    ],
    "permissions": [
        "http:\/\/www.youtube.com\/"
    ]
}