123456789101112131415161718192021 |
- // ==UserScript==
- // @name T-All-历史记录
- // @author tianyunperfect
- // @description 简介
- // @version 1.0.0
- // @update 2021-07-08 16:16:14
- // @match *://*/*
- // @require https://git.tianyunperfect.cn/tianyunperfect/web-base/raw/master/tmp/monkey/util.js?a=2022年05月15日
- // @require https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js
- // ==/UserScript==
- (async () => {
- setTimeout(()=> {
- if (window.top.location.href == window.location.href) {
- axios.get(`https://web_history.tianyunperfect.cn/history/insert?title=${document.title}&url=${location.href}`).then(res => {
- console.log(res.data);
- });
- }
- },3000)
- })();
|