(code: string)
| 4 | |
| 5 | /** Strip SRI hashes and replace slow CDN with faster alternative */ |
| 6 | export function patchScriptCode(code: string): string { |
| 7 | return code |
| 8 | .replace(/^(\/\/\s*@(?:require|resource)\s+.*?)#sha(?:256|384|512)[=-][^\s]+/gm, "$1") |
| 9 | .replace(/https:\/\/cdn\.jsdelivr\.net\/npm\//g, "https://unpkg.com/"); |
| 10 | } |
| 11 | |
| 12 | /** |
| 13 | * Auto-approve permission confirm dialogs opened by the extension. |