Wallpaper Engine

Wallpaper Engine

1,223 ratings
AI东雪莲教你如何查看国区被隐藏的资源
8
2
6
7
6
   
Award
Favorite
Favorited
Unfavorite
Age Rating: Mature
Genre: Anime
Resolution: Dynamic resolution
Category: Wallpaper
File Size
Posted
120.638 MB
Nov 8, 2023 @ 2:10pm
1 Change Note ( view )

Subscribe to download
AI东雪莲教你如何查看国区被隐藏的资源

Description
老实说,这都过去多久了,还有人怎么问得不信自己看不见资源 就什么资源没了 ,无论怎么叫他们去学内容偏好的事儿 都听进不去。所以我只好叫我的星怒莲莲来教教你们了。只是教~
(look ma, no hands!)
不过国内环境应该get不到我这个meme。
小时候超市过一只。
也算是我一劳永逸了。
---------------
105 Comments
Max Sep 16 @ 7:25am 
2025/9/16 特地回来感谢,本来看你的作品列表只有3个,现在变成800多个了 怪不得感觉每天小红车不更新 ,非常感谢大佬
218mile Aug 23 @ 1:22am 
哥有推荐的机场吗?柠檬G了,我都登不上
صههههههه Aug 13 @ 5:51am 
outcast是个人物
流萤 Jul 29 @ 6:28am 
可以用biubiu加速器加速美区,然后点击右上角头像然后查看我的钱包就可以改区了,不过建议加速为港区跟美区没什么区别都有那两个选项,还可以用V来支付游戏反正我是这样的
*决心 Jul 19 @ 11:37pm 
罕见啊
Regenin Jul 17 @ 10:11pm 
貌似成功了,注意,第二段代码也就是搭配方法1(这是剩下2个框的代码).....
最后少了一个} ,敲代码记得加上
谢辞欢 Jul 15 @ 3:39am 
求教,这个是只能解小红车,但是中国国区看不到的游戏还是看不到对吗
DiamondBlock Jul 8 @ 4:56am 
不是很常见啊
bu SA 47 Jul 7 @ 12:49pm 
搭配方法1(这是剩下2个框的代码):用控制台代码强制删除 + 锁定(推荐)
打开 Edge 开发者工具(按 F12 或 Ctrl + Shift + I)。

切换到 “控制台” (Console) 标签。

粘贴以下代码并回车:

javascript
// 1. 找到目标元素(精确匹配 data-parentdescid="4")
const element = document.querySelector(
'.preference_row.account_setting_not_customer_facing[data-parentdescid="4"]'
);

// 2. 如果找到了,就删除类名 + 阻止恢复
if (element) {
// 先删除类名
element.classList.remove("account_setting_not_customer_facing");

// 然后阻止任何代码重新添加它
Object.defineProperty(element.classList, "add", {
value: function (className) {
if (className !== "account_setting_not_customer_facing") {
return DOMTokenList.prototype.add.apply(this, arguments);
}
console.log("拦截:阻止重新添加 account_setting_not_customer_facing");
},
configurable: false,
});
bu SA 47 Jul 7 @ 12:41pm 
方法 1:
在 Edge 开发者工具控制台(Console) 执行以下代码:

javascript
// 1. 找到目标元素
const targetElement = document.querySelector('.preference_row.account_setting_not_customer_facing');

// 2. 删除类名
targetElement.classList.remove('account_setting_not_customer_facing');

// 3. 阻止未来修改(关键!)
Object.defineProperty(targetElement.classList, 'add', {
value: function() {
if (!arguments[0].includes('account_setting_not_customer_facing')) {
return ClassList.prototype.add.apply(this, arguments);
}
console.log("阻止添加 account_setting_not_customer_facing 类");
},
writable: false
});
效果:

立即删除类名。

即使网站 JS 尝试重新添加,也会被拦截。