I want my content script of chrome extension to atleast load on the below page.
URL of this page is normal url of any website just WIFI is switched off or change the user network to offline from the developers tools.
I want my content script of chrome extension to atleast load on the below page.
URL of this page is normal url of any website just WIFI is switched off or change the user network to offline from the developers tools.
The error page is displayed via data:text/html,chromewebdata
URL which you can see by typing location.href
in devtools console and its Sources panel.
The data:
scheme is not scriptable, there's nothing you can do about it AFAIK.
Even webRequest API can't intercept it.