This file contains 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
function hideTdo() { | |
var timer = null; | |
var target = document.querySelector('#tidio-chat iframe'); | |
if(!target) { | |
if(timer !== null) { | |
clearTimeout(timer); | |
} | |
timer = setTimeout(hideTdo, 500); | |
return; | |
} else { |
This file contains 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
/* | |
INSTALL from this Link: | |
https://userstyles.org/styles/139978/twitter-blur-vision | |
Or, you can also use the CSS code below with GreeseMonkey or FreeStyler | |
*/ | |
@-moz-document domain("twitter.com"), domain("support.twitter.com") { | |
.ProfileTimeline a[class*="action-profile"][class*="user-profile"] img, |
This file contains 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
/* | |
Install from here: https://userstyles.org/styles/139876/youtube-thumbnails-blur-and-unblur | |
*/ | |
@-moz-document domain("www.youtube.com") { | |
div[class*="thumb"] img { | |
filter: blur(5px); | |
-webkit-filter: blur(5px); |
This file contains 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
/* | |
# Install from the link: | |
https://userstyles.org/styles/139786/facebook-photo-blur-in-news-feed | |
*/ | |
@-moz-document domain("www.facebook.com"), domain("web.facebook.com") { | |
div[id*="feed_stream"] a[target="_blank"] img, | |
div[id*="feed_stream"] a[href*="photo"] img, |
This file contains 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
var csrf_token = '<%= token_value %>'; // Between <%= %> is the EJS object property passed from server. | |
$("body").bind("ajaxSend", function (elm, xhr, s) { | |
if (s.type == "POST") { | |
xhr.setRequestHeader('X-CSRF-Token', csrf_token); | |
} | |
}); |
NewerOlder