-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoredPandaUnlock.user.js
27 lines (25 loc) · 1022 Bytes
/
BoredPandaUnlock.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/// ==UserScript==
// @name BoredPandaUnlock
// @namespace /~https://github.com/FabriceNeyret/BoredPandaUnlock
// @version 1.1
// @description Unlock BoredPanda display
// @author Fabrice Neyret
// // include https://www.boredpanda.com/*
// @match https://www.boredpanda.com/*
// @match https://www.demilked.com/*
// @run-at document-start
// @grant GM_addStyle
// @downloadURL /~https://github.com/FabriceNeyret/BoredPandaUnlock.user.js
// @updateURL /~https://github.com/FabriceNeyret/BoredPandaUnlock.user.js
// ==/UserScript==
// /~https://github.com/FabriceNeyret/BoredPandaUnlock.user.js
// changelog:
// 1.1 hey, it directly works as is with demilked.com !
window.addEventListener("DOMContentLoaded", function() {
console.log("BoredPandaUnlock loaded");
setInterval(() => {
document.getElementsByClassName("fEy1Z2XT ")[0].remove();
document.body.style='';
document.documentElement.style='';
}, 1000 );
}, false);