🖼 标签:#Bilibili助手 #B站 #去广告 #广告屏蔽 #扩展程序 #脚本

📌 应用简介
Bilibili 快速拉黑助手是一款专为 B 站用户打造的 批量拉黑扩展工具,可以一键屏蔽广告号、擦边号、盗视频号等。导入或识别目标账号列表即可批量操作,让首页内容更干净,告别信息噪音。
💬 小编提示:手动拉黑太慢?用本工具,神人号、广告号一个不留。
🔗 脚本 & 工具链接
- JS代码:
// 在 B 站打开任意 page(已登录),在控制台粘贴运行 const uids = [1042653845, 1055149070, 1075400468, 1148923121, 1152997930, 1188004959, 1208114979, 1227735707, 1252039983, 1257852431, 1302669433, 1356882480, 1430439192, 1627242161, 1642531925, 1655279349, 1720634591, 1743345026, 1798118517, 1806922031, 1817661914, 1826766269, 1859459400, 1919627194, 1926952280, 1956866386, 1957313739, 1987938455, 1992873935, 2024349971, 2067273601, 2072500476, 2101682498, 2103756604, 2115931056, 2118239887, 2126699792]; // 从 document.cookie 里尝试提取 csrf token bili_jct function getCookie(name) { const m = document.cookie.match(new RegExp('(^|; )' + name + '=([^;]*)')); return m ? decodeURIComponent(m[2]) : ''; } const bili_jct = getCookie('bili_jct'); if(!bili_jct) { console.error('无法找到 bili_jct,请确保已登录并且 cookie 可用'); } async function blockUid(uid) { const url = 'https://api.bilibili.com/x/relation/modify?statistics=%7B%22appId%22:100,%22platform%22:5%7D'; const body = new URLSearchParams({ fid: String(uid), act: '5', re_src: '11', gaia_source: 'web_main', extend_content: JSON.stringify({ entity: 'user', entity_id: String(uid) }), csrf: bili_jct }); const resp = await fetch(url, { method: 'POST', headers: { 'content-type': 'application/x-www-form-urlencoded', 'origin': 'https://space.bilibili.com', 'referer': `https://space.bilibili.com/${uid}/dynamic`, }, body: body.toString(), credentials: 'include' }); const j = await resp.json().catch(()=>null); return { uid, status: resp.status, body: j ?? null }; } (async () => { for (const uid of uids) { // 可选延时: await new Promise(r=>setTimeout(r, 300)); const r = await blockUid(uid); console.log(r); } console.log('finished'); })(); - GreasyFork脚本: https://greasyfork.org/zh-CN/scripts/554597-b%E7%AB%99%E6%89%B9%E9%87%8F%E6%8B%89%E9%BB%91%E5%BC%80%E5%B1%8F%E5%B9%BF%E5%91%8A
- GitHub: https://github.com/Nothing1024/bilibili-block-extension
📌 已知广告工作账号(批量屏蔽示例)
这些账号多为英文数字组合、0级小号,主页不显示任何投稿内容或动态,可屏蔽贴片广告和视频开屏广告:
- 1042653845
- 1055149070
- 1064488621(主要)
- 1075400468
- 1148923121
- 1152997930
- 1188004959
- 1208114979
- 1227735707
- 1252039983
- 1257852431
- 1284878163
- 1296541829
- 1302669433
- 1303123946
- 1346091659
- 1356882480(主要)
- 1430439192
- 1577437924
- 1627242161
- 1630491103
- 1642531925
- 1655279349
- 1714908508
- 1720634591
- 1734012280
- 1743345026
- 1798118517
- 1806922031
- 1817661914
- 1826766269
- 1859459400
- 1919627194
- 1919873485
- 1926952280
- 1956866386
- 1957313739(PDD)
- 1987938455(主要)
- 1992873935
- 2024349971
- 2067273601
- 2072500476
- 2101682498
- 2103756604(主要)
- 2115931056
- 2118239887
- 2126699792
🔎 如何找到更多广告工作账号
在 Google 搜索框中输入:
site:bilibili.com intitle:别家素材
即可找到更多广告视频及其官方工作账号,方便批量拉黑。






评论前必须登录!
立即登录 注册