Anay Karnik
Anay Karnik

Reputation: 940

Google Chrome console run a command in every page of a particular website

I am visiting a website which I think has a bug. And I have tried running a javascript function (defined by them), after running the function the site works smoothly in that page. After I navigate to a different page, I again have to run the function. So I want it to run automatically after the page loads. I am using google chrome. So, are there any chrome extensions or any built in thing that can do this. Any help will be appreciated. Thanks in advance.

Upvotes: 3

Views: 7364

Answers (2)

Xan
Xan

Reputation: 77541

Another solution is to write an extension that injects code in the page's context.

It's important, because normally code in the extension is isolated from the page.

Tampermonkey route is probably better though in your case.

Upvotes: 1

javiyu
javiyu

Reputation: 1474

I think tampermonkey is what you are looking for https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo

Upvotes: 4

Related Questions