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」です。
拡張機能のスクリーンショット
h264ify拡張機能のCRXファイルをダウンロード
h264ify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
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" ] } |