enhanced-h264ify
Choose what video codec YouTube should play for you
Cos'è enhanced-h264ify?
enhanced-h264ify è un'estensione di Chrome sviluppata da alex, e la sua funzione principale è "Choose what video codec YouTube should play for you".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione enhanced-h264ify
Scarica i file di estensione enhanced-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
enhanced-h264ify is a fork of well-known h264ify extension for Firefox/Chrome which blocks VP8/VP9 codecs on YouTube, so that you can use H264 only. This may be useful because there are lots of devices on the market which support H264 hardware decoding and do not support VP8/VP9. This extension has new features such as manual blocking of H264, VP8, VP9, AV1 codecs and 60fps video. By default it blocks everything but H264 and 60fps video. It works only on YouTube. GitHub: https://github.com/alextrv/enhanced-h264ify
Informazioni di Base sull'Estensione
Nome | enhanced-h264ify |
ID | omkfmpieigblcllmkgbflkikinpkodlk |
URL Ufficiale | https://chromewebstore.google.com/detail/enhanced-h264ify/omkfmpieigblcllmkgbflkikinpkodlk |
Descrizione | Choose what video codec YouTube should play for you |
Dimensione del File | 17.19 KB |
Conteggio Installazioni | 76,547 |
Versione Corrente | 2.1.0 |
Ultimo Aggiornamento | 2019-06-03 |
Data di Pubblicazione | 2019-06-02 |
Valutazione | 4.83/5 Totale 133 Valutazioni |
Sviluppatore | alex |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/alextrv/enhanced-h264ify |
Lingue Supportate | en,cs,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "enhanced-h264ify", "version": "2.1.0", "manifest_version": 2, "description": "__MSG_extensionDescription__", "homepage_url": "https:\/\/github.com\/alextrv\/enhanced-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": "enhanced-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" ] } |