Jump to content

rereser

Member
  • Posts

    277
  • Joined

  • Days Won

    1
  • Donations

    0.00 USD 

Everything posted by rereser

  1. https://msfn.org/board/search/?q=--ignore-certificate-errors&quick=1&type=forums_topic&nodes=201
  2. https://msfn.org/board/topic/185918-arcticfoxienotheretoplaygames-360chrome-v1351030-redux/page/7/#comment-1260747
  3. https://github.com/FilipePS/Traduzir-paginas-web/releases
  4. after more testing this new progwrp.dll by IDA-RE-things has another big advantage for me. i am running supermium r4 the same way as i did 360chrome. that is, with a modified x-chromium loader.exe and a modified loader.ini. frequently after clearing browser data and closing supermium the x-chromium loader.exe and two chrome.exe processes would still be running in the windows task manager. with those still running a new start of the browser fails. so i just kept the browser running all day or closed the still running processes before restarting the browser when needed. this new progwrp.dll also solved that issue. all chrome processes and the x-loader now close on exit. as said before, only tested on xp sp3 (updated with legacy updates 2014) credits to IDA-RE-things for making this dll and his reports on the github supermium site. https://github.com/win32ss/supermium/issues/created_by/IDA-RE-things https://github.com/IDA-RE-things
  5. huge improvement (for me) in load time supermium r4. read: https://github.com/IDA-RE-things/Chrome-xp-api-adapter download: https://github.com/IDA-RE-things/Chrome-xp-api-adapter/releases/tag/v1.2 replace progwrp.dll v1.1.0.5010 that comes with r4 with the above progwrp.dll v1.2.0.5035. tested on xp sp3 only.
  6. @VistaLover, somehow missed your post from 2/15/2024. if i did i would not have posted. ment no disrespect.
  7. https://msfn.org/board/topic/185918-arcticfoxienotheretoplaygames-360chrome-v1351030-redux/?do=findComment&comment=1255804
  8. here is a modified Array.at() polyfill to install in your userscript manager. ----------------------------------------------------------------------------- // ==UserScript== // @name Inject Array.at() Polyfill (92) // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== function at(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]; } const TypedArray = Reflect.getPrototypeOf(Int8Array); for (const C of [Array, String, TypedArray]) { Object.defineProperty(C.prototype, "at", { value: at, writable: true, enumerable: false, configurable: true }); } --------------------------------------------------------------------------------- the first one was posted before: https://msfn.org/board/topic/184624-arcticfoxienotheretoplaygames-360chrome-v1352036-rebuild-1/page/13/#comment-1245468 it passed the test at: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at this modified version works with the mozilla test and the pdf site. (give it a few seconds to load) you will need more polyfills like structuredclone, and probably others, installed as NHTPG pointed out. source: https://stackoverflow.com/questions/68464114/why-am-i-getting-at-is-not-a-function other source: https://github.com/tc39/proposal-relative-indexing-method?tab=readme-ov-file#polyfill
  9. UCyborg, thank you very much! did not know about the limitations with the previous one but this new structuredclone polyfill works. no more need for the exclude tags i posted. test here: https://www.measurethat.net/Benchmarks/Show/18967/0/structuredclone-test still trying to figure out how you put this together from the github source but my knowledge is limited. thanks again!
  10. found some issues with this polyfill. ----------------------------------------------------------- // ==UserScript== // @name Inject structuredClone() Polyfill (98) // @version 0.0.1 // @match *://*/* // @run-at document-start // @grant none // ==/UserScript== if (typeof self.structuredClone !== "function") { self.structuredClone = function (value) { if (Array.isArray(value)) { const count = value.length; let arr = new Array(count); for (let i = 0; i < count; i++) { arr = self.structuredClone(value); } return arr; } else if (typeof value === "object") { let obj = {}; for (const prop in value) { obj[prop] = self.structuredClone(value[prop]); } return obj; } else { return value; } } } ---------------------------------------------------------------- had to add this to get some sites to work. // @exclude https://*.whatsapp.com/* // @exclude https://*.instagram.com/* // @exclude https://*.facebook.com/* ------------------------------------------------------------------ without the exclude tags the below sites load blank. faq.whatsapp.com instagram.com facebook.com/watch not that i use those sites but something in this polyfill is affecting the above pages. who knows what other sites have issues with it. can the polyfill be improved other then adding the exclude tags?
  11. in 360chrome you can't do that. run the shortcut to the 360loader.exe in windows 2000 compatibility mode. that way you will get the "save password" prompt on many more sites like msfn and deepl.
  12. don't understand the "nullish coalescing operators" thing but sorry for the typo. equally.ai scripts is the problem on trendmicro. it only comes up if tigcdn.com is trusted. https://better.fyi/trackers/tiqcdn.com/ so this can be blocked without causing issues with websites? never would have found the issue with tigcdn untrusted...
  13. block scripts from equalli.ai and the trendmicro site won't crash.
  14. tested several older versions in 360chrome against the elciudadano.com site with the "findlast" polyfill enabled. singlefile 1.22.30 is the last one not producing the error "e-findlast function not found". don't forget to export settings when downgrading. could not find a download on crx4chrome so uploaded my archived version. https://www.mediafire.com/file/ya68z7m65fsghec/MPIODIJHOKGODHHOFBCJDECPFFJIPKLE_1_22_30_0.crx/file
  15. thanks UCyborg. have read that page before asking. way to complicated for me. i like the osprey extension. so consider it solved.
  16. installed stylus and the code works as a test. was hoping to learn if something like that is possible with javascript. edit : installed the osprey 1.0.4 extension. https://github.com/jackcdk/osprey the imdb (mozilla import) css works fine with it and i like the clean interface.
  17. can this css be converted for use in violentmonkey? ---------------------------------------------------------------------------------- @-moz-document url-prefix(https://www.imdb.com/) { div[data-testid="video-aspect-ratio"] { height: 360px !important; } } ------------------------------------------------------------------------------------ it restores video display in imdb.
  18. go to internet options / security / local intranet / sites. uncheck "automatically detect intranet network". check the three "include" options below. had this issue on xp, should work on win 7.
  19. thank you for explaining, good enough for me. archiving 2036 and moving to the new 1030. nice work on the hamburger menu and getting all the fixes merged. can also report this version respects the cleartype settings on my system. all in all, very impressive work!
  20. there is no need for a regular version anymore. the script works just fine with the ungoogled version to download extensions from the new store. what is the reason that you prefer 1030 over 2036?
  21. think there is no way to restore. this is where the settings are saved. https://petri.com/reset_folder_views_in_windows_xp/
  22. google is rolling out the new chrome extensions webstore site. "chrome.google.com/webstore" redirects to "chromewebstore.google.com" with an extension like "cookie keeper 0.2.4" you could delete the new "chromewebstore" cookie to get the old site back. download : https://www.crx4chrome.com/crx/47259/ ("Download Crx File from Crx4Chrome" is the only link working) but lately that does not work anymore for most extensions installed. the old site is still up and can be reached through this page : https://webextension.org/listing/access-control.html (no need to install) this script will let you download extensions if you click the "add buttom" but you will have to install the crx files manually. -------------------------------------------------------------- // ==UserScript== // @name Chrome New Webstore make available for all web browsers which support it // @namespace https://greasyfork.org/en/users/85671-jcunews // @version 1.0.1 // @license AGPL v3 // @author jcunews // @description Make extensions in the new version of Google Chrome Webstore be available for all web browsers which support it // @match https://chromewebstore.google.com/* // @grant none // ==/UserScript== (t => { function chk(a, b, c) { if ((a = location.pathname.match(/^\/detail\/([^\/]+)\/(.*)/)) && (b = document.querySelector('section>div>div[data-is-touch-wrapper]>button:not([data-forall])'))) { b.dataset.forall = 1; b.disabled = false; b.addEventListener("click", () => c.click()); b.appendChild(c = document.createElement("A")); c.style.display = "none"; c.href = `https://clients2.google.com/service/update2/crx?response=redirect&prodversion=100.0&acceptformat=crx2,crx3&x=id%3D${a[2]}%26uc` } } (new MutationObserver(() => { clearTimeout(t); t = setTimeout(chk, 200) })).observe(document.body, {childList: true, subtree: true}); chk() })() ------------------------------------------------------------------------- script source : https://greasyfork.org/en/scripts/479807-chrome-new-webstore-make-available-for-all-web-browsers-which-support-it
  23. maybe this windows setting has something to do with those "pings". control panel / add or remove programs / windows components / update root certificates. i remember seeing an error in event viewer with this setting checked.
  24. used this to replicate the certificate translate issue. example link : http://example.com/ any http site will do to replicate , https is fine , untrusted or not. behaviour is the same on all 13.5 versions.
×
×
  • Create New...