(contentDocument, sourcePath)
| 16 | } |
| 17 | |
| 18 | function inject(contentDocument, sourcePath) { |
| 19 | const script = contentDocument.createElement('script'); |
| 20 | script.src = sourcePath; |
| 21 | |
| 22 | ((contentDocument.body: any): HTMLBodyElement).appendChild(script); |
| 23 | } |
| 24 | |
| 25 | function init( |
| 26 | appSource: string, |