Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

ArcticFoxie/NotHereToPlayGames -- 360Chrome v13.5.2036 rebuild 1

Featured Replies


32 minutes ago, NotHereToPlayGames said:

I use Tampermonkey.

Is there a "leaner" option which only embeds polyfills?

  • Author

I'm finding that having "too many" polyfill injections cause more problems then they solve (breaks Sedecordle, breaks MS Teams, just the first two I've found).

For now, I just keep my list of polyfills disabled by default then enable them when needed as opposed to just injecting them all "just in case" they might be needed.

Technically, I've yet to encounter these on any web site I ever visit.

image.png.294de58e9b92babd81f1c996754dc275.png

  • Author
1 hour ago, NotHereToPlayGames said:

(breaks Sedecordle, breaks MS Teams, just the first two I've found)

In both cases, it was only this polyfill that broke the page  --

if (!Array.prototype.findLastIndex) {
  Array.prototype.findLastIndex = function (callback, thisArg) {
    for (let i = this.length - 1; i >= 0; i--) {
      if (callback.call(thisArg, this, i, this)) return i;
    }
    return -1;
  };
}

  • Author
6 hours ago, rereser said:

my posts for "Array.prototype.findLastIndex" ,  "Array.prototype.at"  and "Array.prototype.findLast" polyfills have been edited.

Awesome, thanks!

I did miss the edit and also somehow missed the findLast.

I can now keep all enabled without any page breaks.

  • Author
6 hours ago, rereser said:

no tests available yet for the latest four very new ones.

I'm opting for this polyfill but do have the four "smaller" ones included-but-disabled in my Tampermonkey set of userscripts.

Won't really know the best option until we can find an example web site or two.

  • Author

The 2ality post specifically states "this blog post only demonstrates the new methods with Arrays, but they are also available for Typed Arrays".

Typed Arrays are -
   Int8Array
   Uint8Array
   Uint8ClampedArray
   Int16Array
   Uint16Array
   Int32Array
   Uint32Array
   Float32Array
   Float64Array
   BigInt64Array
   BigUint64Array

This (same link as earlier post) polyfill should work for Arrays and Typed Arrays.

  • Author
45 minutes ago, rereser said:

it does not slow down the browser so that is good.

Agreed.

I'm just keeping my full list of polyfills enabled since I'm seeing no more page breaks.

image.png.01d7f56b0961a5d942162190af780c3b.png

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.