...
The script is executed as plain javascript. That means that a
<script>
tag is not necessary anymore.To ensure backwards compatibility, all existing scripts had have been wrapped like this:
document.write(`[old script]`)
.The script is now injected at the bottom of the pages
<head>
section instead of the start of the pages<body>
section.The script is now loaded with the
async
property.There is a new
extra-style
field available in the admin panel, that can be used to include custom css.
...