xiaoxiaoflood
xiaoxiaoflood
> 2. Do you know if any of the extensions (especially BackTrack Tab History) load scripts off-the-main thread (e.g. in workers)? Most of them use `messageManager`, like DownThemAll!. Some userChromeJS...
Thanks. I've been using mozregression extensively since Fx 57 to track and fix breakages. Like your [1570681](https://bugzilla.mozilla.org/show_bug.cgi?id=1570681) did in Fx 71 to bootstrapLoader.xpi users. :stuck_out_tongue_winking_eye:
So Fx 88 broke DownThemAll!: https://bugzilla.mozilla.org/show_bug.cgi?id=1694462 https://github.com/downthemall/downthemall-legacy/blob/84160d789062691de0ffd82bdc4ebc123b540203/modules/manager/chunk.js#L17-L38 I could simply rename `Services.tm.newThread(0)` by `Services.tm.newNamedThread('')`, but... [JS doesn't have access to it](https://searchfox.org/mozilla-central/rev/368607c4cd5be547021945e4ae60e8eb4365b3c4/xpcom/threads/nsIThreadManager.idl#70). 😕 Would it be possible to remove `[noscript]` from...
Working fine here both on remote and on non-remote tabs. ```js getGroupMessageManager('browsers').loadFrameScript('data:application/javascript,' + encodeURIComponent('(' + (() => console.log('hello from *' + content.document.title + '*') ).toString() + ')();'), true); ``` >...
*tst.js*: ```js console.log('hello from *' + content.document.title + '*') ``` Both ```js getGroupMessageManager('browsers').loadFrameScript('chrome://userchromejs/content/tst.js', true); ``` and ```js getGroupMessageManager('browsers').loadFrameScript('resource://userchromejs/utils/tst.js', true); ``` work for me on every tab.
No. It's something on your side. You can open a fresh new profile in latest Nightly with no user.js, no Policies... then *install* userChromeJS and finally do what I did...
Hi, That would be hard. I don't even really know deeply how the code of these extensions works, I just provide fixes for incompatibilities from Fx updates. So all extensions...
Not *intended*, but I think it's normal. With every input, Fx repopulates the list and selects the first row, then Enter Selects forces the selection of the first suggestion (second...
Could you please give me an example link? Tried it [here](https://www.w3schools.com/html/html_iframe.asp) and it's working fine.
> After recent updates of Quantum Dev I had to update your scripts and now I can't do that anymore. Have you tested if an older version of mouseGestures.uc.js works...