刷NS太费时间,怎么戒

wxx 2026-08-03 11:33 1

感觉比戒烟还难,说的不上了,只要电脑一开或手机一拿就点进来了,怎么办 ^-^

最新回复 (24)
  • kyochi-lian 08-03 11:34
    1

    ns有没有按照热度排序的功能啊

  • No1 08-03 11:34
    2

    身份证发出来 我帮你给当地晶哥发消息

  • 江小白 08-03 11:34
    3

    +1 ^-^

  • Jerryu 08-03 11:34
    4

    添加规则domain-suffix, nodeseek.com, reject

  • 买鸡狂魔 08-03 11:37
    5

    只要俩小时不上就有100多个新帖子等着我去看

  • Dearlove 08-03 11:40
    6

    @Jerryu #4 狠

  • Faiz 08-03 11:41
    7

    去看点攒劲的 就把ns戒了

  • wxx 楼主 08-03 11:41
    8

    @Faiz #7 求指点

  • kget 08-03 11:43
    9

    戒一个东西最好的办法就是培养另一个兴趣爱好

  • leak2 08-03 11:45
    10

    建议你联系下站长 把你的号删除了 吧你的ip封了 ^-^

  • nanakabu 08-03 11:52
    11

    这边建议自首🙌

  • yuyu12138 08-03 13:22
    12

    domain-suffix, nodeseek.com, reject

  • PassionAries 08-03 13:28
    13

    你去抢劫一下银行就能戒了

  • MoaiWarrior69 08-03 13:29
    14

    去淄博找杨教授戒个网瘾就没事了 ^-^

  • meteoraf2hig 08-03 13:48
    15

    @wxx #0 之前有个老哥发帖向管理员请求封他的号来着,你可以试下 ^-^

  • 周潤發 08-03 13:49
    16

    买房买车结婚生子,贷多点马内,尽量让自己负债多一些,就能戒了

  • WhyUCry 08-03 14:04
    17

    ^-^

  • DayDayWait 08-03 14:04
    18

    @leak2 #10

    英雄所见略同

  • leak2 08-03 14:07
    19

    ^-^ @DayDayWait #18 ^-^ 最好是还带设备一起

  • aurexav 08-03 14:08
    20

    我感觉没有特别吸引吧, 偶尔瞄一眼

  • jianggaoyi 08-03 14:34
    21

    戒了干嘛

  • wxx 楼主 08-03 14:35
    22

    @jianggaoyi #21 打游戏

  • xuemao 08-03 14:35
    23

    把科学上网关掉或卸载了

  • Chinese 08-03 14:45
    24
    // ==UserScript==
    // @name NodeSeek 沉浸劝退器
    // @namespace https://your.name/nodeseek-blocker
    // @version 2.0
    // @description 访问 nodeseek.com 时全屏覆盖提醒,不弹窗、不看原内容
    // @match http://www.nodeseek.com/*
    // @match https://www.nodeseek.com/*
    // @match http://nodeseek.com/*
    // @match https://nodeseek.com/*
    // @run-at document-start
    // @grant none
    // ==/UserScript==

    (function () {
    'use strict';

    // 极早拦截,阻止后续资源加载
    window.stop();

    // 直接重写整个文档,原页面内容完全不会渲染
    const html = `<!doctype html>
    <html lang="zh-CN">
    <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <title>歇会儿吧</title>
    <style>
    * { margin:0; padding:0; box-sizing:border-box; }
    html, body { width:100%; height:100%; overflow:hidden; }
    body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #eaeaea;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    }
    .emoji { font-size: 72px; margin-bottom: 32px; animation: bounce 1.2s infinite ease-in-out; }
    @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
    }
    .line1 {
    font-size: clamp(22px, 5vw, 36px);
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #ffd166;
    }
    .line2 {
    font-size: clamp(18px, 4vw, 28px);
    font-weight: 500;
    line-height: 1.6;
    color: #e0e0e0;
    }
    .line2 .highlight { color: #ef476f; font-weight: 700; }
    .footer {
    position: fixed;
    bottom: 28px;
    font-size: 13px;
    color: #888;
    letter-spacing: 1px;
    }
    .close-btn {
    margin-top: 40px;
    padding: 12px 32px;
    font-size: 16px;
    border: 2px solid #ef476f;
    background: transparent;
    color: #ef476f;
    border-radius: 8px;
    cursor: pointer;
    transition: all .25s;
    }
    .close-btn:hover { background: #ef476f; color: #fff; }
    </style>
    </head>
    <body>
    <div class="emoji">🐂</div>
    <div class="line1">今天你的牛马当完了么?</div>
    <div class="line2">
    要不抽点时间<br>
    陪陪<span class="highlight">孩子</span>或者<span class="highlight">父母</span>???
    </div>
    <button class="close-btn" onclick="window.close()">关闭标签页</button>
    <div class="footer">— 来自一个关心你的脚本 —</div>
    </body>
    </html>`;

    document.open('text/html', 'replace');
    document.write(html);
    document.close();

    // 再拦一次,防止页面后续被原站 JS 改写
    Object.defineProperty(document, 'write', { value: () => {}, writable: false });
    Object.defineProperty(document, 'writeln', { value: () => {}, writable: false });
    })();

* 帖子来源NodeSeek
返回