// ==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);
})();
1
linglin0924 2022-04-23 11:11:23 +08:00
用上了,不错,感谢楼主
|
2
reorx 2022-04-23 11:40:55 +08:00 via iPhone
InstantClick 大法好
|
3
listenfree 2022-04-23 11:50:04 +08:00
建议加上 v2ex.com 的域名 match ,目前只是 www.v2ex.com
|
4
sudoy 2022-04-23 13:12:24 +08:00
原来油猴脚本通过 require 就可以引入第三方 js 库,get 了新技能了,之前一直都是通过 js 注入到 header 去
|
5
Dotennin 2022-04-23 13:24:38 +08:00
学到了, InstantClick 懒人大法好
|
6
461da73c 2022-04-23 13:49:36 +08:00
Edge 好像不工作。
这行报错: /* globals jQuery, $, InstantClick,waitForKeyElements */ |
7
justin2018 2022-04-23 15:11:13 +08:00
bootcdn.net 这个最好换一下 他家的 CDN 挂过几次 o(╯□╰)o
|
8
Geraltt 2022-04-23 15:52:05 +08:00
很好用,感谢~
|
9
bo233 2022-04-23 16:46:42 +08:00 via iPhone
用上了,感谢
|
10
ijrou 2022-04-23 16:49:02 +08:00
用上了。。。
|
11
SunBK201 2022-04-23 17:00:47 +08:00
搜索貌似失效了
|
12
shalk 2022-04-23 17:35:36 +08:00
还想匹配 v2ex.com/* 怎么改
|
13
goophy 2022-04-23 19:07:37 +08:00
切换 夜间模式 就不行了
|
14
learningman 2022-04-23 19:19:10 +08:00
@SunBK201 确实,搜索被 gank 了
|
15
fpure 2022-04-23 20:55:36 +08:00
InstantClick 有点意思,学到了
|
16
hertzry 2022-04-23 21:13:23 +08:00 via Android
问一下有没有适用于所有网站的无刷新加载插件。
|
19
rioshikelong121 2022-04-23 23:22:46 +08:00
Cool.
|
20
unco020511 2022-04-24 09:13:28 +08:00
用上了,感谢
|
21
Bronya 2022-04-24 09:37:00 +08:00
用上了,挺好使,感谢~
|
22
coldmonkeybit 2022-04-24 11:15:41 +08:00
不错不错赞一个
|
23
songjinxin 2022-05-09 19:01:31 +08:00
不错不错 ! 感谢楼主分享!
|