Jump to content

rereser

Member
  • Posts

    277
  • Joined

  • Days Won

    1
  • Donations

    0.00 USD 

Everything posted by rereser

  1. 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 }); }
  2. 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 }); }
  3. 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 }); }
  4. https://msfn.org/board/topic/184051-my-browser-builds-part-4/?do=findComment&comment=1243849 https://phiab.com/ : blank page ... enable : chrome://flags/#enable-experimental-web-platform-features
  5. thanks again. ! see that the chrome.dll is rebased compared to 13.5.2022 , works fine. so does the win 10 skin that was posted earlier. my "white text to black mod" in the top blue bar also works.
  6. thank you ! coming from 13.5.2022 is it needed to rebuild the profile ?
  7. for me those chevrons only appear when the chrome window size is set to 800 x 600. that applies for 13.5.2022 and 13.5.2036.
  8. "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 ?
  9. good luck with that , have been searching and testing for hours without results ...
  10. present in chrome.dll : hxxp://cloud.browser.360.cn 3x hxxps://cloud.browser.360.cn 1x so you have already modified those. still get the connection on first run , not so in 13.5.2022.
  11. in chrome.dll replaced hiya.browser.360.cn with 19 dots. no more hiya connection ... no such results yet for the 4 cloud.browser.360.cn entrys ( 20 dots ) observation : your win10 v2 skin seems to work fine. chrome store and translate work.
  12. first run : hiya.browser.360.cn - 180.163.252.201 180.163.249.3 cloud.browser.360.cn - 180.163.252.144 180.163.251.24 second run : hiya.browser.360.cn - 180.163.252.201 180.163.249.3 a general msfn forum search has results for "hiya" and "cloud.browser". so you have dealt with those before ...
  13. 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.
  14. connections on first run 13.5.2036 beta directly after zip unpack. with DNSQuerySniffer : hiya.browser.360.cn and after a few seconds : cloud.browser.360.cn skin.chrome.360.cn on second run only hiya.browser.360.cn
  15. have been reading the topic for a while now. i don't understand everything besides the amount of work involved. there must some reason for you to build 13.5.2036.
  16. i don't run "tests" , just browse. 13.5.1030 was marked beta but i agree it works fine. have been using 13.5.2022 regular since you posted it. would like to see the 13.5.2036 final but that is up to you.
  17. 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.
  18. just the one hex reversal on a clean unpacked beta.zip tested your hex edit on the russian repack source chrome.dll "Translate to English" is there with either hex value ?
  19. not working here after 12 relaunches of the clean 13.5.2036 beta. nothing added , nothing blocked. no "Translate to English" context menu. "Enable automatic translation" in the advanced settings works though ...
  20. 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.
  21. don't understand. sometimes the error is with 360chrome.exe and sometimes with chrome.dll. hitting the escape key just closes the error and the browser. this is a "non issue" as far as i'm concerned. no need to click that "bookmark menu" star three times when there are no bookmarks ...
  22. clicking the star on the left next to the "click to restore" button three times crashes the browser. just add one bookmark and it will not.
  23. 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.
  24. https://www.nirsoft.net/utils/chromepass.html chrome stored passwords can be retrieved with this little free portable utility.
  25. 360ChromePortable_13.5.1030_rebuild_7_regular and ungoogled , webgl files and folder are missing : in the 13.5.1030.0 root folder ... 1 / the swiftshader folder with the two dll files ( libEGL.dll - 352 KB , libGLESv2.dll - 2,35 MB ) 2 / libegl.dll ( 332 KB ) and libglesv2.dll ( 5,13 MB )
×
×
  • Create New...