Web View Request
Use this to access the webview from the extension. There are 3 types of requests:
Headers - Used to intercept requests made by the webview and get the headers
Cookie - Used to get the cookies stored in the webview
Evaluate - Used to evaluate javascript in the webview
The extension can implement all of the sub-interfaces, and the onStop methods will be called in this order of Headers, Cookie, Evaluate.
The initialUrl is the URL to be loaded in the webview. The stopUrlRegex is the regex to match the URL when the request is assumed to be complete.
Inheritors
Types
Properties
The initial URL to be loaded in the webview.
The maximum time to wait for data to be returned from the webview. This is in milliseconds.
The regex to match the URL when the request is assumed to be complete. Checks on all requests made by the webview.