We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bd6a90 commit d094142Copy full SHA for d094142
1 file changed
V2ex-Enhanced.user.js
@@ -1,6 +1,6 @@
1
// ==UserScript==
2
// @name V2EX 增强
3
-// @version 1.0.1
+// @version 1.0.2
4
// @author X.I.U
5
// @description 自动签到、自动无缝翻页、回到顶部(右键点击两侧空白处)
6
// @match *://v2ex.com/*
@@ -48,10 +48,10 @@
48
function menu_switch(menu_status, Name, Tips) {
49
if (menu_status == 'true'){
50
GM_setValue(`${Name}`, false);
51
- GM_notification({text: `已关闭 [${Tips}] 功能\n(刷新网页后生效)`, title: '吾爱破解论坛增强', timeout: 3000});
+ GM_notification({text: `已关闭 [${Tips}] 功能\n(刷新网页后生效)`, timeout: 3000});
52
}else{
53
GM_setValue(`${Name}`, true);
54
- GM_notification({text: `已开启 [${Tips}] 功能\n(刷新网页后生效)`, title: '吾爱破解论坛增强', timeout: 3000});
+ GM_notification({text: `已开启 [${Tips}] 功能\n(刷新网页后生效)`, timeout: 3000});
55
}
56
registerMenuCommand(); // 重新注册脚本菜单
57
};
0 commit comments