HgTrojanYouTube自动切换至最高清晰度脚本 中发帖

文章地址:https://blog.hgtrojan.com/index.php/archives/444/ 
文章带一键获取地址
源代码
// ==UserScript==
// @name YouTube Auto HD
// @namespace https://blog.hgtrojan.com
// @version 1.6
// @description 自动选择最高画质的YouTube视频
// @author HgTrojan
// @match *://www.youtube.com/*
// @grant none
// ==/UserScript==


(function() {
'use strict';

let highestQuality = null;

...