wwwwwllllk 发表于 2022-5-24 14:59:08

解决掘金,简书直链跳转的问题

没有想到这么简单吧,我其实断断续续想了挺久的。
```javascript
// ==UserScript==
// @name         解决掘金,简书直链跳转的问题
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description脱了裤子放屁一个道理,搞不懂为啥要做这个功能,一直用的就这两个,知乎刚才看了一下没有。不知道是不是改掉了
// @author       xiaoxiami
// @match      https://link.juejin.cn/?target=*
// @match      https://www.jianshu.com/go-wild?*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=juejin.cn
// @grant      none
// ==/UserScript==

(function() {
    'use strict';
   setTimeout(()=>{
         let url = window.location.href;
         console.log(url)
         // 掘金的url
         // 不等于-1的时候才表示没有
         if(url.indexOf("link.juejin.cn") != -1){
         console.log(url)
         // 拿到目标地址
         let targetUrl = document.getElementsByClassName('link-content').innerText;
         window.location.replace(targetUrl);
         } else if (url.indexOf("jianshu.com") != -1){
             // 简书的url
             let targetUrl = document.getElementsByClassName("_2VEbEOHfDtVWiQAJxSIrVi_0").innerText;
             window.location.replace(targetUrl);
         }
   },2000)
})();

潘钜森 发表于 2022-5-24 15:34:21

ggnb!
页: [1]
查看完整版本: 解决掘金,简书直链跳转的问题