一个邮件通知模板!
uBlacklist 可以对搜索引擎的结果进行过滤,屏蔽不喜欢/需要的搜索结果,支持常见的如谷歌/必应搜索。
扩展地址:ublacklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ==UserStyle== | |
@name 哔哩哔哩推广过滤 | |
@version 20250628.01.12 | |
@namespace https://userstyles.world/user/inkss | |
@description 利用 Stylus 对哔哩哔哩外观进行修饰,去除不喜欢的元素。 | |
@author inkss | |
@license MIT | |
==/UserStyle== */ | |
@-moz-document domain("www.bilibili.com") { | |
/* 哔哩哔哩首页元素屏蔽 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LazyLoader { | |
constructor(selector) { | |
this.lazyPictureObserver = null; | |
this.observedElements = new Set(); | |
this.selector = selector; | |
this.initObserver(); | |
this.observeElements(); | |
} | |
// 初始化观察器 |