$mail = new PHPMailer;
$mail->isSMTP();
$mail->CharSet = "utf-8";
$mail->SMTPDebug = 2;
$mail->Debugoutput = 'html';
$mail->Host = 'smtp.gmail.com';
$mail->Port = 587;
$mail->SMTPSecure = 'tls';
$mail->SMTPAuth = true;
$mail->Username = "...";
$mail->Password = "...";
$mail->setFrom('...', '...');
$mail->addAddress('...', '...');
$mail->Password
? // пустой файл
{
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'sha256-5oSAL3avyJmEQUQe+yWdwWpnk8zZY2GYiHf3b01uagI=' 'https://apis.google.com/'; object-src 'self'"
},
"chrome_url_overrides":{
"newtab":"newpage.html"
},
"background": {
"service_worker": "background.js"
}
//...
}
newpage.html<script>
var a=1;
</script>
Существует ли способ вставить и выполнить скрипт на целевом сайте инлайново?