Skip to content

Instantly share code, notes, and snippets.

@microvn
Last active December 16, 2019 11:05
Show Gist options
  • Save microvn/6cecb19d5a675da0f289c1ca6032ef91 to your computer and use it in GitHub Desktop.
Save microvn/6cecb19d5a675da0f289c1ca6032ef91 to your computer and use it in GitHub Desktop.
Disable blur in Tinder 'Who likes you' web page
[VietNamese]
Mở DevTool rồi chọn Tab console của trình duyệt hoặc bấm tổ hợp phím dưới đây.
DevTool Chrome -> Ctrl+Shift+I (Cmd+Opt+I macOS).
Firefox developer tools -> Ctrl+Shift+K(Cmd+Opt+K macOS).
IE- Use the F12 developer tools -> google
Safari for developers – We Inspector. -> google
Copy đoạn mã phía dưới rồi paste vào Console rồi nhấn "Enter"
document.querySelector(".likesYou__scroller").innerHTML = document.querySelector(".likesYou__scroller").innerHTML.replace(/Blur\(12px\)::a/g, 'Blur(0px)::a').replace(/84x106_/g, '640x800_').replace(/84x84_/g, '640x640_');
[English]
DevTool Chrome -> Ctrl+Shift+I (Cmd+Opt+I macOS).
Firefox developer tools -> Ctrl+Shift+K(Cmd+Opt+K macOS).
IE- Use the F12 developer tools -> google
Safari for developers – We Inspector. -> google
Copy and paste code and then press "Enter".
document.querySelector(".likesYou__scroller").innerHTML = document.querySelector(".likesYou__scroller").innerHTML.replace(/Blur\(12px\)::a/g, 'Blur(0px)::a').replace(/84x106_/g, '640x800_').replace(/84x84_/g, '640x640_');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment