Skip to content

Instantly share code, notes, and snippets.

@EncodeTheCode
Created March 30, 2018 10:13
Show Gist options
  • Select an option

  • Save EncodeTheCode/c78f7a53bd6bc1acc9679f45d1c27889 to your computer and use it in GitHub Desktop.

Select an option

Save EncodeTheCode/c78f7a53bd6bc1acc9679f45d1c27889 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Blendr Remove Image Blur and Censoring
// @namespace http://userstyles.org
// @description Removes image blur and censoring from images on Blendr dating website.
// @author EncodeTheCode
// @homepage https://userstyles.org/styles/157795
// @include http://blendr.com/*
// @include https://blendr.com/*
// @include http://*.blendr.com/*
// @include https://*.blendr.com/*
// @run-at document-start
// @version 0.20180330101205
// ==/UserScript==
(function() {var css = [
".mm_facebook_photos .facebook-photos, .mm_gift_screen .photo-gallery__blocker_--gift, .mm_instagram_photos .instagram-photos, .mm_not_moderated_photo .not-moderated-photos, .mm_private_photos .private-photos {",
" z-index: -1;",
" opacity: 0;",
" display: none !important;",
" }",
" .photo-gallery__blocker_--blue,",
" .photo-gallery__blocker_--gift {",
" background: transparent;",
" color: transparent;",
" }",
" .mm_gift_screen .photo-gallery__photo-bg,",
" .mm_gift_screen .photo-gallery__photo > img,",
" .mm_not_moderated_photo .photo-gallery__photo-bg,",
" .mm_not_moderated_photo .photo-gallery__photo > img,",
" .mm_private_photos .photo-gallery__photo-bg,",
" .mm_private_photos .photo-gallery__photo > img {",
" -webkit-filter: blur(-0px);",
" filter: blur(-0px);",
" }"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment