Jump to content

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


Recommended Posts

1 hour ago, NotHereToPlayGames said:

No way to disable it.  It can be reduced by not running a rebased version of chrome.dll, but then you won't like the RAM consumption.

Can you send me the "not rebased" chrome.dll from the 2036?

Link to comment
Share on other sites


24 minutes ago, NotHereToPlayGames said:

I doubt I even have it anymore.  I'd have to recreate it from scratch.

Can you please look?
I think that for many, faster access is more important than a bit more memory.

On 1030 I also use the non-rebased and all the errors I had with other programs are gone.

Link to comment
Share on other sites

 

1 hour ago, NotHereToPlayGames said:

Run in Incognito.  I suspect your uBO (which always sounds to me like something somebody would say walking out of the gym) is interfering.

LOL! Yes, that was it.
:thumbup
Not the gretest result.

Clipboard-1.thumb.jpg.b55949844fb8c552cf4860aae8793b8c.jpg

:(

Link to comment
Share on other sites

The results are always good for per-computer comparisons (different browsers on the SAME COMPUTER).

But the results have never been good for computer-to-computer (my computer versus your computer).

Speedometer is great (IMO) for desktop/laptop comparisons but essentially worthless (I am told) as a mobile phone benchmark.

Link to comment
Share on other sites

5 hours ago, NotHereToPlayGames said:

I doubt I even have it anymore.  I'd have to recreate it from scratch.

I have now used the (non-rebased) chrome.dll from 1030 in 2036 for testing.
It runs, but it also has the delay.

Link to comment
Share on other sites

I've always had that delay.  I wouldn't swap .dll's between 1030 and 2036, the index numbers for several translation strings do not match.  If you navigate through the settings, you may see text in spots they never used to be at.

Did you check for that delay with and without the site isolation flag disabled?

Link to comment
Share on other sites

On 5/17/2023 at 9:07 AM, rereser said:

JS polyfill for findLastIndex


test : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findLastIndex
implemented in chrome 97 : https://caniuse.com/mdn-javascript_builtins_array_findlastindex

// ==UserScript==
// @name Inject findLastIndex Polyfill
// @version 0.0.1
// @match *://*/*
// @run-at document-start
// @grant none
// ==/UserScript==

if (!Array.prototype.findLastIndex) {
  Object.defineProperty(Array.prototype, "findLastIndex",
    {
      value: function (predicate, thisArg) {
        let idx = this.length - 1;
        while (idx >= 0) {
          const value = this[idx];
          if (predicate.call(thisArg, value, idx, this)) {
            return idx;
          }
          idx--;
        }
        return -1;
      }
      ,
      writable: true,
      enumerable: false,
      configurable: true
    });
}

This version breaks USPS login.

Previous version breaks MS Teams login.

Link to comment
Share on other sites

I think I'm going to start tackling these this way  --  https://github.com/barbushin/javascript-errors-notifier/releases

I was hoping to just keep ALL of my polyfill usercripts enabled ALL THE TIME but I suspect that's just gonna cause of lot of web sites to break.

By using this extension instead, I won't have to open my console every time a web site requries a polyfill, I just need to pull down the icon because it turned red to indicate the page has javascript errors then enable the appropriate polyfill and reload.

image.png.63b181bfdff7b75c597793ec3de589fa.png

Edited by NotHereToPlayGames
Link to comment
Share on other sites

source : https://github.com/behnammodi/polyfill/blob/master/array.polyfill.js
at the top there is 'use strict';
i left that out on copy because it was not present in the structuredClone polyfill.
"use strict"; is also present in the palefill xpi polyfill.js.
could that be the cause of the USPS login break ?
can't test , have no account , but the login page displays fine.

Link to comment
Share on other sites

12 hours ago, NotHereToPlayGames said:

I've always had that delay.  I wouldn't swap .dll's between 1030 and 2036, the index numbers for several translation strings do not match.  If you navigate through the settings, you may see text in spots they never used to be at.

Did you check for that delay with and without the site isolation flag disabled?

With 1030 I have no delay at all. Click and the page is there.
In 1030 I now have isolation flag enable and there is no delay.

Link to comment
Share on other sites

42 minutes ago, rereser said:

source : https://github.com/behnammodi/polyfill/blob/master/array.polyfill.js
at the top there is 'use strict';
i left that out on copy because it was not present in the structuredClone polyfill.
"use strict"; is also present in the palefill xpi polyfill.js.
could that be the cause of the USPS login break ?
can't test , have no account , but the login page displays fine.

Hmmm...

Tested with and without 'use strict'; and doesn't seem to make a difference so I'm unsure if that should be kept or not.

But did discover that the login breaks with or without my polyfills enabled, so I guess that's reassuring that it isn't the polyfills causing the break but it's just the USPS web site.

I think I'll label the USPS as a False Alarm.

Link to comment
Share on other sites

thanks for the feedback.
have no other way to test the findLastIndex polyfill except for the mozilla page.
also have zero javascript knowledge , i just find , test and post.
the previous findLastIndex polyfill i found somewhere else but the test returned a wrong value that i did not notice.
still curious about what 'use strict'; does and if it is needed at the top of each script.
hope you find the cause of the USPS login break.

Edited by rereser
Link to comment
Share on other sites

1 hour ago, rereser said:

can't test , have no account , but the login page displays fine.

It's one of my favorite accounts.

I log in every 30 days to create a Mail Hold - every 30 datys!

I literally only walk out to the mailbox and retrieve mail TWELVE times per YEAR.

I get ZERO "junk mail" because flyers and advertisements and all sorts of JUNK are not "held" by the Post Office to deliver on my Mail Hold end-date.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...