I want to be able to scroll using javascript in pdf format that is viewed in chrome. However, the usual approach of using window.scrollBy () does not work, because pdf itself is embedded in the page, so using window.scrollBy () on the parent page basically does nothing.
Is there any way I can run my content script in an inline document so that I can scroll?
source
share