// ==UserScript== // @name Bilibili 哔哩哔哩阻止动态点击正文跳转 // @icon https://t.bilibili.com/favicon.ico // @namespace https://lolicon.app/ // @version 1.0.0 // @description 阻止动态点击正文跳转动态页面(可通过点击动态发布时间打开) // @author Jindai Kirin // @match https://t.bilibili.com/* // @match https://space.bilibili.com/* // @license MIT // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function () { 'use strict'; GM_addStyle('.description.active{cursor:unset!important}'); document.addEventListener( 'click', e => { const $target = $(e.target); if ($target.hasClass('content-full') || $target.hasClass('content-ellipsis')) { e.stopPropagation(); } }, { capture: true } ); })();