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 |
官方網址 | 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" ] } |