This commit is contained in:
xing 2022-06-27 03:47:45 +00:00
parent c8aaee364f
commit e57cd8861f

View File

@ -1,3 +1,23 @@
// ==UserScript==
// @name 手机贴吧辅助脚本
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://tieba.baidu.com/*
// @match https://jump2.bdimg.com/*
// @match https://tiebac.baidu.com/*
// @exclude https://*/index
// @exclude https://*/index*
// @match https://*/f?*kw=*
// @connect https://tieba.baidu.com/mg/o/getFloorData
// @connect https://jump2.bdimg.com/mg/o/getFloorData
// @connect https://tiebac.baidu.com/mg/o/getFloorData
// @icon https://tieba.baidu.com/favicon.ico
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict'; 'use strict';
const style = ` const style = `
.lzl-post .lzl-post-item { padding-top: 8px; .lzl-post .lzl-post-item { padding-top: 8px;
@ -45,4 +65,5 @@
ob.observe(document.body, { ob.observe(document.body, {
childList: true childList: true
}) })
} }
})();