
rereser
Member-
Posts
277 -
Joined
-
Days Won
1 -
Donations
0.00 USD
Content Type
Profiles
Forums
Events
Everything posted by rereser
-
JS polyfill for findLast test : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findLast implemented in chrome 97 : https://caniuse.com/mdn-javascript_builtins_array_findlast // ==UserScript== // @name Inject findLast Polyfill // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (!Array.prototype.findLast) { Object.defineProperty(Array.prototype, "findLast", { value: function (predicate, thisArg) { let idx = this.length - 1; while (idx >= 0) { const value = this[idx]; if (predicate.call(thisArg, value, idx, this)) { return value; } idx--; } return undefined; } , writable: true, enumerable: false, configurable: true }); }
-
JS polyfill for Array.at test : https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at implemented in chrome 92 : https://caniuse.com/mdn-javascript_builtins_array_at // ==UserScript== // @name Inject Array.at Polyfill // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (!Array.prototype.at) { Object.defineProperty(Array.prototype, "at", { value: function (n) { // ToInteger() abstract op n = Math.trunc(n) || 0; // Allow negative indexing from the end if (n < 0) n += this.length; // OOB access is guaranteed to return undefined if (n < 0 || n >= this.length) return undefined; // Otherwise, this is just normal property access return this[n]; }, writable: true, enumerable: false, configurable: true }); }
-
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 }); }
-
"The cloud connection is this line, "x" out the two t's in http -" good find , no more unwanted connections. in IE mode on google.com the "Share URL QR Code" is still there as well as the popup. when right clicking on the google logo the page just goes blank. in 13.5.2022 the "Share URL QR Code" and "Share image location" are not in the context menu. unfortunately the hex codes for 13.5.2022 provided by mixit do not work in 13.5.2036. may be a non issue , why even use IE mode in a chromium browser ?
-
did have regedit entrys from 13.5.2022 on my system as it is set as my default. made a full backup , cleaned all the 360chrome entrys , same result. using 1.1.1.1 as my dns server if that is of any help. have no entrys in my hosts file. hiya.browser.360.cn - 180.163.252.201 180.163.249.3 cloud.browser.360.cn - 180.163.251.24 180.163.252.144 skin.chrome.360.cn - 180.163.251.73 other observations : triple click on "bookmark star" - no more crash. right click minimize - renamed. suggestion : remove "select compat mode" from the context menu. that would make the IE mode hex edits redundant.
-
Function:Drop Share URL QR Code from IE mode page context menu 2-of-3 (1 occurrence) found 2x Function:Drop Share URL QR Code from IE mode page context menu 3-of-3 (1 occurrence) found 2x the 6 reversals for "Drop Share URL QR Code" and "Share image location" in IE mode do not work. both context menu's are present.
-
thank you for the beta release. memory use for me is minimal without rebase. chrome.dll. replace: 89 F9 68 7A 1A 00 00 68 51 81 00 00 with: EB 0F 68 7A 1A 00 00 68 51 81 00 00 Function: Drop Translate to English from Chrome mode page context menu (1 occurrence) reversing this does not bring back the "Translate to English" context menu. EB 0F 68 7A 1A 00 00 68 51 81 00 00 is present in 13.5.2022 regular chrome.dll as in the beta 13.5.2036. with the same hex value in both , the "Translate to English" context menu is not available in the beta ? will wait for a regular version if there is one in the planning.
-
My Browser Builds (Part 4)
rereser replied to roytam1's topic in Browsers working on Older NT-Family OSes
thanks UCyborg for the palefill xpi and the structuredClone script. works well in NM28 and 360chrome 13.5 with violentmonkey. ( default template ) had a question about setting this for all sites ( // @match *://*/* ) from the polyfill link NHTPG posted i think that is correct. test can be done here : https://www.measurethat.net/Benchmarks/Show/18967/0/structuredclone-test thanks again UCyborg for the valuable input and also NHTPG for the additional info. -
360 Extreme Explorer Modified Version
rereser replied to Humming Owl's topic in Browsers working on Older NT-Family OSes
https://www.nirsoft.net/utils/chromepass.html chrome stored passwords can be retrieved with this little free portable utility.- 2,340 replies
-
5