NO ENTIENDO !!! El .json valida correctamente, el HTML funciona correctamente si lo ejecuto en EDGE o Google Chrome, pero cuando lo invoco desde el Manifest,Json con "chrome_url_overrides": {
<!DOCTYPE>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="estilos.css">
<title>Funka Loco</title>
</head>
<body>
<p>Presione y mantenga presionada una tecla dentro del campo de texto para establecer un color de fondo rojo. Suelte la tecla para establecer un color de fondo verde.</p>
<input type="text" id="demo" onkeydown="keydownFunction()" onkeyup="keyupFunction()">
<script>
function keydownFunction() {
document.getElementById("demo").style.backgroundColor = "red";
}
function keyupFunction() {
document.getElementById("demo").style.backgroundColor = "green";
}
</script>
</body>
</html>