Ask me anything!

Have a question you always wanted to ask Moonchild but never did? Now's your chance!
From 2026-03-08 to 2026-03-15 I'll be open to any question by the community, after which I'll provide answers.

Go here to participate: https://forum.palemoon.org/viewtopic.php?f=66&t=33222

https://forums.getpaint.net/topic/15260-plugin-index/

For support with specific websites

Moderator: trava90

Forum rules
Please always mention the name/domain of the website in question in your topic title.
Please one website per topic thread (to help keep things organized). While behavior on different sites might at first glance seem similar, they are not necessarily caused by the same.

Please try to include any relevant output from the Toolkit Error Console or the Developer Tools Web Console using the following procedure:
  1. Clear any current output
  2. Navigate or refresh the page in question
  3. Copy and paste Errors or seemingly relevant Warnings into a single [ code ] block.
User avatar
hujan86
Fanatic
Fanatic
Posts: 207
Joined: 2017-09-27, 06:50

https://forums.getpaint.net/topic/15260-plugin-index/

Post by hujan86 » 2026-02-08, 07:15

The list of plugin names is supposed to be loaded upon entering the forum thread. In Pale Moon, the list is blank. Hence, the search function is unusable.

Pale Moon:
Image

Other browsers:
Image

Code: Select all

Timestamp: 2/8/2026 2:43:12 PM
Error: TypeError: Error resolving module specifier: polyfills
Source File: https://mattw.io/pdn-plugin-index/js/main.js?v=2025-11-18T11:41:55+00:00
Line: 0
You do not have the required permissions to view the files attached to this post.
Avatar's Source: yereverluvinuncleber

User avatar
adoxa
Astronaut
Astronaut
Posts: 601
Joined: 2019-03-16, 13:26
Location: Qld, Aus.

Re: https://forums.getpaint.net/topic/15260-plugin-index/

Post by adoxa » 2026-02-08, 10:00

It's using unsupported importmap, and PM also doesn't like "-" in dates (e.g. new Date("08-Feb-2026") fails, but new Date("08 Feb 2026") is okay). Here's a Modify HTTP Response filter to fix them.

Code: Select all

[["mattw.io",["/(?:main|events|plugin)\\.js/",["\"polyfills\"","\"./polyfills.js?v=2025-11-18T11:41:55+00:00\"","\"dom\"","\"./dom.js?v=2025-11-18T11:41:55+00:00\"","\"events\"","\"./events.js?v=2025-11-18T11:41:55+00:00\"","\"util\"","\"./util.js?v=2025-11-18T11:41:55+00:00\"","\"plugin\"","\"./plugin.js?v=2025-11-18T11:41:55+00:00\"","/new Date\\(.*?release/g","$&.replaceAll(\"-\",\" \")"]]]]

User avatar
RealityRipple
Keeps coming back
Keeps coming back
Posts: 938
Joined: 2018-05-17, 02:34
Location: Los Berros Canyon, California

Re: https://forums.getpaint.net/topic/15260-plugin-index/

Post by RealityRipple » 2026-02-11, 00:45

The date format support is on the list. bug #1439800 should solve this particular one, but I need to finish looking for unicode ICU patches (like the one caused by the special-space character that came before the AM/PM periods in timestamps) before starting in on adding the variants.

Can't speak to importmap support, though.