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
javascript: (function() { | |
if (/^https?:\/\/(www\.)?geeksforgeeks\./g.test(document.URL)) { | |
document.querySelector(".login-modal-div").style.display = "none"; | |
window.onscroll = null; | |
document.body.style.position = "initial"; | |
} else alert("This feature only works in GeeksForGeeks site"); | |
})(); |
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
javascript: (function() { | |
let cvs = document.querySelectorAll('.konvajs-content > canvas'); | |
let backup = cvs[0].toDataURL("image/png"); | |
let img = document.createElement("IMG"); | |
img.onload = () => { | |
cvs[0].getContext("2d").drawImage(img, 0, 0); | |
cvs[0].toBlob(blob => { | |
navigator.clipboard.write([new ClipboardItem({ | |
"image/png": blob | |
})]); |
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
/* This script was auto generated on previewing the "Pretty Print"-ed response body of `json_formatter.min.js` file using the Chrome DevTools's Network tab whereas `json_formatter.min.js` file itself was created manually */ | |
window['pre']; | |
const version = "4.2.3"; | |
const isExpanded = true; | |
window['recurse'] = (obj,keyname='',isLast=false)=>{ | |
const expanded = isExpanded ? 'expanded' : '' | |
, c = isLast ? '' : ','; | |
let type = typeof obj | |
, dom = document.createDocumentFragment() | |
, inner = document.createDocumentFragment() |
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
javascript: (function() { | |
if (/https:\/\/(www\.)?glassdoor\.co(\.in|m)/g.test(document.URL)) { | |
document.querySelector('#HardsellOverlay').remove(); | |
document.body.style.overflow = 'auto'; | |
document.body.onscroll = null; | |
[...document.querySelectorAll('.css-lyyc14')].forEach(e => e.style.maxHeight = 'unset'); | |
} else alert("This Feature only works Glassdoor websites"); | |
})(); |
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
def decToRoman(n): | |
dec = { | |
"1": "I", | |
"5": "V", | |
"10": "X", | |
"50": "L", | |
"100": "C", | |
"500": "D", | |
"1000": "M" | |
} |
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
javascript: (function() { | |
var m = document.querySelector('.qu-zIndex--alert'); | |
if (m) { | |
m.style.display = 'none'; | |
m.nextElementSibling.style.overflow = 'auto'; | |
m.nextElementSibling.style.filter = 'none'; | |
} else { | |
var e = document.querySelector('#root .q-box.qu-overflow--hidden'); | |
document.querySelector('.qu-zIndex--blocking_wall').style.display = e.style.filter = 'none'; | |
e.style.overflow = 'auto'; |
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
javascript: (function() { | |
const version = '1.2'; | |
if (document.URL.startsWith("https://www.scribd.com/doc")) { | |
let btn = document.createElement("BUTTON"), nv = ""; | |
btn.className = "wrapper__filled-button download_btn"; | |
btn.innerHTML = "Reveal"; | |
btn.style.cssText = 'position:fixed;width:117px;z-index:59;bottom:14vh;right:10vw'; | |
btn.onclick = () => { | |
window.scrollTo(0, 0); | |
let o = document.createElement("DIV"); |
NewerOlder