您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
View tags on YouTube description pages.
当前为
// ==UserScript== // @name View YouTube tags // @name:de Zeige YouTube-Tags // @namespace tfr // @description View tags on YouTube description pages. // @description:de Zeige Schlagwörter auf Youtube-Beschreibungsseiten an. // @license CC0; https://creativecommons.org/publicdomain/zero/1.0/ // @compatible firefox // @compatible chrome // @oujs:author tfr // @include http://www.youtube.com/watch* // @include https://www.youtube.com/watch* // @version 3 // @grant none // ==/UserScript== /* Version 3: Update metadata, add German description */ /* Dieses Skript steht unter CC0 / This script is licensed under CC0: * http://creativecommons.org/publicdomain/zero/1.0/deed.de * http://creativecommons.org/publicdomain/zero/1.0/deed.en */ /* Disable AJAX on links because it is buggy */ for(var i = window.document.getElementsByClassName("spf-link").length - 1; i >= 0; i--) { window.document.getElementsByClassName("spf-link")[i].className = window.document.getElementsByClassName("spf-link")[i].className.replace(/spf-link/g, ""); } if(typeof ytplayer !== "undefined" && typeof ytplayer.config !== "undefined" && typeof ytplayer.config.args !== "undefined" && typeof ytplayer.config.args.keywords !== "undefined") { var keywords = ytplayer.config.args.keywords; var label = "Tags"; var nli = document.createElement('li'); keywords = keywords.replace(/, /g, ",").replace(/,/g, ", "); nli.innerHTML = "<h4 class=\"title\">" + label + "<\/h4><div class=\"content\"><p>" + keywords + "<\/p><\/div>"; document.getElementsByClassName("watch-extras-section")[0].appendChild(nli); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址