Hey, anyone knows about best video chat option nowadays? I know there’re many alternatives to Omegle and I was recently checking https://omegle.fan but would love to know more from you guys.
Hello,
It looks like the Freshservice Knowledge Base editor is automatically sanitizing the embedded HTML for security reasons, which can result in attributes like autoplay
or even parts of the allow
list being stripped out after saving.
To prevent the video from autoplaying, make sure that the autoplay
parameter is not present in the video URL (or explicitly set to autoplay=0
if supported by the platform, like YouTube). For example, if you're embedding a YouTube video, modify the URL like this:
https://www.youtube.com/embed/VIDEO_ID?autoplay=0
Also, since the editor is stripping attributes like allow="autoplay"
, removing autoplay
from both the URL and the allow
attribute helps ensure that autoplay won't be triggered.
Unfortunately, due to how the Freshservice KB editor handles HTML sanitization, fine-grained control over iframe attributes may be limited.
Freshservice sanitizes HTML, so you can’t fully control iframe behavior like autoplay. Best workaround: use a clean embed link with no autoplay query parameter, and let the platform strip the rest.