Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
How do I *keep* overflow as scroll or auto?

Some sites (notably twitter) like to set overflow:hidden, typically on either body or html, particularly when they pop up a modal window. With a chrome extension, I've set it to scroll as !important, but ... after a delay, it changes. Is there a way (short of turning off javascript entirely) to keep the overflow attribute where I set it?

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

You should share your code - however I think the best way to do this would be to listen to changes to the DOM (in the content script of your extension) and re-set the overflow to auto/scroll. You can use MutationObserver:

 let observer = new MutationObserver(mutations => {
    // Code here
 });
 observer.observe(document, { childList: true, subtree: true });
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!