Youtube Preview

Show likes and dislikes rating bar on video thumbnails, previewing YouTube video like gif, helping you decide if its worth watching.

Youtube Preview란 무엇입니까?

Youtube Preview은(는) tennison.chan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show likes and dislikes rating bar on video thumbnails, previewing YouTube video like gif, helping you decide if its worth watching."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        # YouTube Previewer
Youtube just got easier. Fast-forward through videos all before you have to watch the complete video.  Jump to your favorite parts in a preview motion.

## Features
Preview Video Like a Gif
Speed through Youtube Videos. Jump to your favorite part, even fast-forward to your favorite part, all before you have to watch the whole video.                    

확장 프로그램 기본 정보

이름 Youtube Preview Youtube Preview
ID gbkgikkleehfibaknfmdphhhacjfkdap
공식 URL https://chrome.google.com/webstore/detail/youtube-preview/gbkgikkleehfibaknfmdphhhacjfkdap
설명 Show likes and dislikes rating bar on video thumbnails, previewing YouTube video like gif, helping you decide if its worth watching.
파일 크기 1.58 MB
설치 횟수 1,243
현재 버전 0.9.4
최근 업데이트 2021-04-05
출시 날짜 2021-04-05
평점 4.27/5 총 52 개의 평점
개발자 tennison.chan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.9.4",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "author": "Tennison Chan ",
    "icons": {
        "16": "images\/icon.png",
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "css": [
                "styles\/preview.css"
            ],
            "js": [
                "bower_components\/material-design-lite\/material.min.js",
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/fuse.js\/src\/fuse.min.js",
                "scripts\/options.js",
                "scripts\/env.js",
                "scripts\/profiles.youtube.js",
                "scripts\/rewind-button.js",
                "scripts\/progress-bar.js",
                "scripts\/video-bookmark.js",
                "scripts\/preview.js",
                "scripts\/no-preview.js",
                "scripts\/storyboard.js",
                "scripts\/video-sparkbar.js",
                "scripts\/main.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.google.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/bookmark-icon.png",
        "images\/close.png",
        "images\/add.png",
        "images\/search.png",
        "images\/bg_2048.png",
        "rewind-button.html"
    ]
}