Able to actually block scripts using a plugin, have XPC set up between plugin and host process. Limited UI support
16 lines
270 B
Objective-C
16 lines
270 B
Objective-C
//
|
|
// SBRWebProcessDelegate.h
|
|
// SBrowser
|
|
//
|
|
// Created by James Magahern on 7/22/20.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@protocol SBRWebProcessDelegate <NSObject>
|
|
|
|
- (void)webProcessDidConnect;
|
|
- (void)webProcessDidLoadScriptWithOrigin:(NSString *)origin;
|
|
|
|
@end
|