YouTube Line

Locks the YouTube player timeline

YouTube Line란 무엇입니까?

YouTube Line은(는) Light Alex에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Locks the YouTube player timeline"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Extension locks the YouTube player timeline. Now when player controls disappear, you can see the video timeline.                    

확장 프로그램 기본 정보

이름 YouTube Line YouTube Line
ID olpncmboeipmdokpobmfjohclhaefofm
공식 URL https://chrome.google.com/webstore/detail/youtube-line/olpncmboeipmdokpobmfjohclhaefofm
설명 Locks the YouTube player timeline
파일 크기 110 KB
설치 횟수 1,320
현재 버전 1.0.3.1
최근 업데이트 2021-04-25
출시 날짜 2019-04-15
평점 4.75/5 총 28 개의 평점
개발자 Light Alex
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://addons.lightalex.com/?source=chrome_store
지원되는 언어 en,ru,uk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Line",
    "short_name": "__MSG_description__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "1.0.3.1",
    "author": "Light Alex",
    "options_page": "options.html",
    "icons": {
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png",
        "256": "icons\/256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        }
    },
    "background": {
        "scripts": [
            "files\/script\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/youtube.com\/*",
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "files\/css\/style.css"
            ],
            "js": [
                "files\/script\/jquery-3.2.1.min.js",
                "files\/script\/postload.js"
            ]
        }
    ]
}