Cory Snyder

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

修改host C:\Windows\System32\drivers\etc\hosts

39.156.66.10 clarity.ms
39.156.66.10 g.csdnimg.cn
39.156.66.10 googlesyndication.com
39.156.66.10 pagead2.googlesyndication.com
39.156.66.10 sp0.baidu.com
39.156.66.10 v.clarity.ms
39.156.66.10 fundingchoicesmessages.google.com

39.156.66.10 account.jetbrains.com
39.156.66.10 jrebel.npegeek.com
39.156.66.10 www.schemastore.org
39.156.66.10 schemastore.azurewebsites.net

油猴脚本

// ==UserScript==
// @name         FIX-CSDN
// @namespace    csdn.net
// @version      2024-07-06
// @description  try to take over the world!
// @author       You
// @match        https://blog.csdn.net/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=csdn.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

$("*").css({
    height:"unset",
    "max-height":"unset",
    "user-select":"unset",
})
$(".article_content").css({
    height:"unset",
    "max-height":"unset",
    "user-select":"unset",
})
$(".hide-article-box").css({
    display:"none",
})

    // Your code here...
})();
posted on 2024-07-06 10:39  CorySnyder  阅读(39)  评论(0)    收藏  举报