|
发表于
2022-1-18 22:12:40
|
显示全部楼层
不行,gcal 应该是随机字符串
- // ==UserScript==
- // @name New Userscript
- // @namespace https://bbs.tampermonkey.net.cn/
- // @version 0.1.0
- // @description try to take over the world!
- // @author You
- // @match https://bbs.tampermonkey.net.cn/
- // @grant GM_xmlhttpRequest
- // ==/UserScript==
- (function () {
- 'use strict';
- GM_xmlhttpRequest({
- url: 'https://github.com/scriptscat/scriptcat/raw/main/README.md',
- onload(resp) {
- console.log(resp);
- },
- onreadystatechange(res) {
- console.log(res.responseHeaders)
- const reg = res.responseHeaders.match(/tm-finalurl\S+: (\S+)\s/);
- if (reg && reg.length === 2) {
- xhr.abort();
- const finalUrl = reg[1];
- console.log(finalUrl);
- }
- }
- });
- // Your code here...
- })();
复制代码
console.log(res.responseHeaders,res.finalUrl) res.finalUrl 就可以获得这个链接了
|
|