ACTCD
ACTCD
@bkmdev I was just explaining that you usually can't "automatically" unmute it via scripts, due to the design of the browser for that limitation. Just like you usually could change...
@bkmdev What is your iOS version? And the Userscripts App version? I seem to reproduce the issue in iOS 18.3 emulator. Further investigation is still needed.
I think this is a bug in upstream (i.e. Safari), which exists in some iOS versions. I haven't tested all iOS versions, but: 17.5 - Work 18.3.1 - Error 18.4.1...
Take `jQuery` for example: ```js // ==UserScript== // @name Legacy `@require` // @match *://example.com/* // @require https://code.jquery.com/jquery-3.7.1.js // ==/UserScript== (function () { $("h1").css("color", "red"); })(); ``` The changes needed are...
Reserved
@F9y4ng CSP only affects the page context rather than the content script context, in other words it can also block the entire user script rather than just the required libs....
Just to state again: - This will NOT be immediately unavailable nor will it be removed anytime soon - And we will try to provide internal or external alternatives to...
> v4.8.2 is no longer able to fetch `@requeir` resources, but the same script in Tampermonkey is able to fetch `@require` resources correctly. 4.x.x did not make any changes regarding...