Skip to content

Instantly share code, notes, and snippets.

@michael-dm
michael-dm / index.html
Created October 22, 2022 10:17
Electron webview focus steal bug
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<webview id="myview" src="https://wikipedia.com" style="display:none; height: 400px" />
@michael-dm
michael-dm / index.html
Created January 15, 2023 10:06
electron adblock bug
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
<style>
body, html, webview {
@michael-dm
michael-dm / index.html
Created January 15, 2023 10:20
electron adblocker bug
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'">
<link href="./styles.css" rel="stylesheet">
<title>Hello World!</title>
<style>
body, html, webview {