h264ify
Makes YouTube stream H.264 videos instead of VP8/VP9 videos
Cos'è h264ify?
h264ify è un'estensione di Chrome sviluppata da erkserkserks, e la sua funzione principale è "Makes YouTube stream H.264 videos instead of VP8/VP9 videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione h264ify
Scarica i file di estensione h264ify in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | h264ify |
ID | aleakchihdccplidncghkekgioiakgal |
URL Ufficiale | https://chromewebstore.google.com/detail/h264ify/aleakchihdccplidncghkekgioiakgal |
Descrizione | Makes YouTube stream H.264 videos instead of VP8/VP9 videos |
Dimensione del File | 30 KB |
Conteggio Installazioni | 1,142,244 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2019-09-09 |
Data di Pubblicazione | 2019-09-08 |
Valutazione | 4.56/5 Totale 1116 Valutazioni |
Sviluppatore | erkserkserks |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/erkserkserks/h264ify |
URL della Pagina di Aiuto | https://github.com/erkserkserks/h264ify |
Lingue Supportate | 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" ] } |