您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Returns old VK design for PC after 9 october 2020 update.
当前为
// ==UserScript== // @name Old VK design // @namespace only for real men // @version 1.2 // @description Returns old VK design for PC after 9 october 2020 update. // @author Me // @include *://vk.com/* // @include *://vkontakte.ru/* // @include *://vk.me/* // @grant none // ==/UserScript== (function() { 'use strict'; var gobno = document.querySelector('body.new_header_design').className, i=0; document.querySelector('body.new_header_design').className = gobno.replace("new_header_design",""); var timer = setInterval(function(){ try{document.querySelector('body.new_header_design').className = gobno.replace("new_header_design","");}catch(e){} },3000); var poisq = document.querySelector('.input_back'); poisq.style.padding = "6px 6px 6px 19px"; poisq.style.margin = "7px 0 7px 8px"; // fix poiska })();