NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Google Meets h264ify
// @namespace victor141516
// @version 1.0
// @description Force H.264 on Google Meets. This fixes the high CPU usage issue.
// @author victor141516
// @match https://meet.google.com/*
// @run-at document-start
// @require https://raw.githubusercontent.com/erkserkserks/h264ify/master/src/inject/inject.js
// @grant none
// @license MIT
// ==/UserScript==
(function () {
'use strict';
localStorage['h264ify-enable'] = true;
localStorage['h264ify-block_60fps'] = false;
inject();
})();