Last active
July 12, 2020 05:59
-
-
Save SanthoshBabuMR/9d4cdbacc9ca3d8c96582cca43cacce5 to your computer and use it in GitHub Desktop.
hide irrelevant content in a 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
/* | |
* site: https://www.oxfordlearnersdictionaries.com/ | |
*/ | |
#ad_btmslot_a, iframe { | |
visibility: hidden; | |
} | |
/* | |
* site: https://learning.oreilly.com/ | |
*/ | |
.sbo-site-nav, | |
.sbo-nav-top, | |
.interface-control-btns, | |
.subscribe-nag, | |
.sbo-nav-bottom, | |
.pagefoot { | |
visibility: hidden; | |
} | |
/* | |
* site: https://www.javatpoint.com/ | |
*/ | |
.onlycontent > div:nth-child(1), | |
#right, | |
#leftad, | |
div[data-refresh-time], | |
ins[data-ad-client] { | |
visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment