Files
WechatMomentScreenshot/fuckWechat.js

16 lines
1.2 KiB
JavaScript
Raw Normal View History

2020-06-07 01:47:08 +08:00
(function (document) {
2019-01-26 21:33:27 +08:00
var div = document.createElement('div');
div.setAttribute('id', 'fuckWechat');
document.querySelector('.mdui-appbar').style.filter = 'blur(2px)';
document.querySelector('.mdui-container').style.filter = 'blur(2px)';
2020-06-20 01:12:17 +08:00
div.style.cssText = 'position:fixed;left:0;top:0;width:100%;height:100%;box-sizing:border-box;padding:18px;font-size:16px;line-height:1.5em;background-color:rgba(255,255,255,.9);z-index:2147483647;display:flex;justify-content:center;align-items:center'
2019-08-24 00:30:41 +08:00
div.innerHTML = ''
+ '<div>'
+ '<h1>( ^ω^)</h1>'
2023-10-13 23:05:52 +08:00
+ '<p>本工具不建议在微信中使用。</p>'
2020-06-07 01:47:08 +08:00
+ '<p><button style="width:100%;background-color:#175199;color:#fff;border:none;border-radius:4px;height:2em" onclick="document.body.removeChild(document.getElementById(\'fuckWechat\'));document.querySelector(\'.mdui-appbar\').style.filter=\'\';document.querySelector(\'.mdui-container\').style.filter=\'\';">继续</button></p>'
2023-10-13 23:05:52 +08:00
+ '<p style="text-align:center;color:#bbb;font-size:14px">在微信以外的环境打开此页面,不会出现此遮罩层</p>'
2019-08-24 00:30:41 +08:00
+ '</div>';
2019-01-26 21:33:27 +08:00
2019-06-26 14:00:28 +08:00
document.body.append(div);
2020-06-07 01:47:08 +08:00
})(document)