I was able to solve my issue by following these steps:
1. I used the latest version of Opera GX browser for Windows 7 on a virtual machine.
2. I downloaded and extracted the zip file from https://github.com/kylepaulsen/ResourceOverride/releases.
3. I loaded the unpacked folder as an extension in Opera GX.
4. I pinned the extension and added https://chatgpt.com/* as the tab URL.
6. I named the file as "gpt fix" and chose the file type as "js".
7. I selected "Inject into Head" and clicked on "Edit File".
The javascript:
if (!Array.prototype.toSorted) {
Array.prototype.toSorted = function(compareFn) {
compareFn = compareFn || ((a, b) => String(a).localeCompare(b));
const arrayCopy = [...this];
return arrayCopy.sort(compareFn);
};
}
8. In the editor, I added the script mentioned above and saved the changes.
9. Finally, I closed the window and the issue was resolved.
The solution credit goes to the original contributors. We hope this helps anyone facing a similar problem.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.