您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Enable printing at songsterr.com
当前为
// ==UserScript== // @name Songsterr Print-Enabler // @namespace http://greasyfork.icu/de/scripts/369383-songsterr-print-enabler // @version 0.4 // @description Enable printing at songsterr.com // @author Guitar Hero // @grant none // @include *songsterr.com* // @include songsterr.com* // @include *songsterr.com // @include songsterr.com // @include www.songsterr.com* // @include http://songsterr.com/* // @include http://*.songsterr.com/* // ==/UserScript== (function() { 'use strict'; // Remove nag screens document.querySelectorAll('section section:not(#tablature)').forEach(function(item){item.style.display='none';}); document.querySelectorAll('header a[target="_blank"]').forEach(function(item){item.style.display='none';}); // Show tabs // (except first and last svg element) var svgElements = document.querySelectorAll('#root #tablature svg'); for (var i=1; i < svgElements.length-1 ; i++) { svgElements[i].style.display = "block"; } })();