// ==UserScript==
// @name V2EX 无刷新加载页面
// @version 0.1
// @description V2EX 无刷新切换页面,跳转页面
// @author You
// @match https://www.v2ex.com/*
// @grant none
// @require https://cdn.bootcdn.net/ajax/libs/instantclick/3.1.0/instantclick.min.js
/* globals jQuery, $, InstantClick,waitForKeyElements */
// ==/UserScript==
(function() {
'use strict';
/* 初始化 InstantClick 插件 */
InstantClick.init();
/* 隐藏 InstantClick 插件的加载进度条 */
var style = document.createElement("style");
style.type = "text/css";
var text = document.createTextNode("#instantclick-bar{display:none;}");
style.appendChild(text);
var head = document.getElementsByTagName("head")[0];
head.appendChild(style);
})();
https://greasyfork.org/zh-CN/scripts/420178-v2ex%E6%97%A0%E5%88%B7%E6%96%B0%E5%8A%A0%E8%BD%BD%E9%A1%B5%E9%9D%A2