h264ify

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

Qu'est-ce que h264ify ?

h264ify est une extension Chrome développée par erkserkserks, et sa fonction principale est "Makes YouTube stream H.264 videos instead of VP8/VP9 videos".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension h264ify

Téléchargez les fichiers d'extension h264ify au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom h264ify h264ify
ID aleakchihdccplidncghkekgioiakgal
URL Officiel https://chromewebstore.google.com/detail/h264ify/aleakchihdccplidncghkekgioiakgal
Description Makes YouTube stream H.264 videos instead of VP8/VP9 videos
Taille du Fichier 30 KB
Nombre d'Installations 1,142,244
Version Actuelle 1.1.0
Dernière Mise à Jour 2019-09-09
Date de Publication 2019-09-08
Évaluation 4.56/5 Total 1116 Évaluations
Développeur erkserkserks
Type de Paiement free
Site Web de l'Extension https://github.com/erkserkserks/h264ify
URL de la Page d'Aide https://github.com/erkserkserks/h264ify
Langues Prises en Charge 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"
    ]
}