Invisible tabs in chrome extension
问题 I basically want to automate a website by using a Chrome extension. But this website has extremely much client-side code, so it's really hard to find out which request I need to make in order to get the needed information. The easiest way I can think of would be to use a content script to enter text in input elements and click buttons, like this (with jQuery in this case): $.ready(function(){ $("#input").val("foo"); $("#submit").click(); }); Quite similar to this question: Injecting input