-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathreset_title.user.js
53 lines (47 loc) · 1.62 KB
/
reset_title.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// ==UserScript==
// @name [F2] Reset Page Title
// @name:zh-CN [F2] 重设页面标题
// @description Press F2 to reset the tab title
// @description:zh-CN 按F2重新设置标签页标题
// @author Moshel
// @namespace https://hzy.pw
// @supportURL https://github.com/h2y/link-fix
// @license GPL-3.0
// @downloadURL https://github.com/h2y/link-fix/raw/master/reset_title.user.js
// @updateURL https://github.com/h2y/link-fix/raw/master/reset_title.user.js
// @version 1.0.0
// @match http://*/*
// @match https://*/*
// @grant none
// @run-at document-body
// @require https://cdn.staticfile.org/keymaster/1.6.1/keymaster.min.js
// ==/UserScript==
(function() {
'use strict';
let defaultTitle = document.title;
let title = sessionStorage.getItem('title_by_userscript');
let intervalID = null;
if (title) {
startInterval(title);
}
function startInterval(newTitle) {
title = newTitle;
sessionStorage.setItem('title_by_userscript', newTitle);
document.title = newTitle;
if (!intervalID) {
intervalID = setInterval(() => {
document.title = title;
}, 6666);
}
}
key("f2", _ => {
let newTitle = prompt('请为页面设置一个标题', title ? title : document.title);
if (newTitle) {
startInterval(newTitle);
} else {
clearInterval(intervalID);
intervalID = null;
document.title = defaultTitle;
}
});
})();