您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
[Works in FF and Chrome!] changes youtube links to refresh whole page, so other scripts will work.
当前为
- // ==UserScript==
- // @name Youtube Link Fix for addons/scripts
- // @namespace http://www.youtube.com/
- // @version 0.4
- // @description [Works in FF and Chrome!] changes youtube links to refresh whole page, so other scripts will work.
- // @author William H
- // @include *youtube.com/watch?v=*
- // @grant none
- // @require http://code.jquery.com/jquery-latest.js
- // ==/UserScript==
- window.addEventListener("load", convertMyLinks($("[class^='yt-uix-sessionlink content-link spf-link spf-link ']")), false);
- if(document.readyState == "complete"){
- convertMyLinks($("[class^='yt-uix-sessionlink content-link spf-link spf-link ']"));
- }
- function convertMyLinks(elemArray) {
- "use strict";
- for (i = 0; i < elemArray.length; i += 1) {
- $(elemArray[i]).attr("href", elemArray[i].href).removeAttr('data-sessionlink').removeAttr('rel').attr('class', $(elemArray[i]).attr('class').split(" spf-link ")[0]);
- }
- }