Here is a small of custom function you can use/hook in your theme. We keep this library up to date as soon as we add new code snippets asked by our users.
Enable No Track Skip attribute on ALL players of your website automatically
Add this to your theme’s child function.php
add_filter( 'srp_track_skip_attribute', 'your_prefix_function_callback', 10, 1);
function your_prefix_function_callback($arg) {
return "on";
}