您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Reloads the GitHub Pull Request Diff page, adjusting the URL to have the diffs ignore whitespace.
当前为
// ==UserScript== // @name Reload GitHub Pull Request Diff page to ignore whitespace // @namespace https://bitbucket.org/deadlydog/greasemonkeyscripts // @description Reloads the GitHub Pull Request Diff page, adjusting the URL to have the diffs ignore whitespace. // @include https://github.com/*/pull/*/files // @exclude https://github.com/*/pull/*/files?w=1 // @grant none // @version 1.1 // ==/UserScript== // Wipe out the head and body contents so that we don't wait for them to load before doing the redirect. document.head.innerHTML=''; document.body.innerHTML=''; // Redirect to the URL we are at, with the special modifier attached that signals to ignore whitespace in the diffs. window.location.href=window.location.href + '?w=1';