h264ify

Makes YouTube stream H.264 videos instead of VP8/VP9 videos

h264ify란 무엇입니까?

h264ify은(는) erkserkserks에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes YouTube stream H.264 videos instead of VP8/VP9 videos"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Try h264ify if YouTube videos stutter, take up too much CPU, eat battery life, or make your laptop hot.

By default, YouTube streams VP8/VP9 encoded video. However, this can cause problems with less powerful machines because VP8/VP9 is not typically hardware accelerated.

In contrast, H.264 is commonly hardware accelerated by GPUs, which usually means smoother video playback and reduced CPU usage. h264ify makes YouTube stream H.264 videos instead of VP8/VP9 videos.

Github: https://github.com/erkserkserks/h264ify                    

확장 프로그램 기본 정보

이름 h264ify h264ify
ID aleakchihdccplidncghkekgioiakgal
공식 URL https://chromewebstore.google.com/detail/h264ify/aleakchihdccplidncghkekgioiakgal
설명 Makes YouTube stream H.264 videos instead of VP8/VP9 videos
파일 크기 30 KB
설치 횟수 1,142,244
현재 버전 1.1.0
최근 업데이트 2019-09-09
출시 날짜 2019-09-08
평점 4.56/5 총 1116 개의 평점
개발자 erkserkserks
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/erkserkserks/h264ify
도움말 페이지 URL https://github.com/erkserkserks/h264ify
지원되는 언어 en,cs
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "h264ify",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/erkserkserks\/h264ify",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "h264ify",
        "default_popup": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube-nocookie.com\/*",
                "*:\/\/*.youtu.be\/*"
            ],
            "js": [
                "src\/inject\/inject.js",
                "src\/inject\/content_script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "default_locale": "en",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}