I would like to load my Chrome extension before all the elements of the page load (instead of after). Is this possible? Thanks!
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If by extension you mean content script then the most you can do is set
"run_at": "document_start"property in manifest which means(read more).
You won’t be able to communicate with your background page before the page starts loading though as there is no synchronous message passing.