Last active
December 16, 2019 11:05
-
-
Save microvn/6cecb19d5a675da0f289c1ca6032ef91 to your computer and use it in GitHub Desktop.
Disable blur in Tinder 'Who likes you' web page
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
[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