您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fuck redirects when u click on audio name
// ==UserScript== // @name AudioRedirectsFucker // @namespace Violentmonkey Scripts // @match *://vk.com/* // @grant none // @version 1.4 // @author Rofliex // @description Fuck redirects when u click on audio name // @license MIT // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '.no-hover { }\r\n.no-hover:hover{ text-decoration: none;}'; document.getElementsByTagName('head')[0].appendChild(style); left_audio_btn = document.querySelector('#l_aud > a'); left_audio_btn.setAttribute('href',left_audio_btn.getAttribute("href") + '?section=all') ; let timerId = setInterval(() => { var els = document.querySelectorAll('div.audio_row__title._audio_row__title > a'); for (var i=0; i < els.length; i++) { els[i].className = "no-hover"; els[i].removeAttribute("href", ""); } }, 200);