Method/Tut Tutorial To Bypass Mega.nz 50GB Import Limit

Currently reading:
 Method/Tut Tutorial To Bypass Mega.nz 50GB Import Limit

Cl/4y

Member
Amateur
LV
5
Joined
Sep 13, 2023
Threads
724
Likes
1,581
Awards
11
Credits
12,540Ā©
Cash
0$
šŸ’  Steps:

1.Create a new mega account with temp mail, verify it, and log in to your new MEGA account.

2. To run the script, you first need to add the Google Extension Tampermonkey (https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo) to your browser.

3. Click on the Tampermonkey icon from your browser and choose the ā€œCreate a New Scriptā€-

This will open up the Script Editor. Delete all of the content that is already prepopulated.

4. Now copy the script from the Pastebin link below

Mega.nz Script:

  1. // ==UserScript==
  2. // @name MEGA.nz Ultimately Import
  3. // @name:zh-TW MEGA.nz Ultimately Import /
  4. // @name:zh-CN MEGA.nz Ultimately Import
  5. // @namespace methusela
  6. // @version 0.1
  7. // @description Bypass import limit on Mega Web client & remove warning about the space usage
  8. // @author d0gkiller87
  9. // @match chrome-extension://bigefpfhnfcobdlfbedofhhaibnlghod/*
  10. // @match http://mega.co.nz/*
  11. // @match http://mega.io/*
  12. // @match http://mega.is/*
  13. // @match http://mega.nz/*
  14. // @match https://mega.co.nz/*
  15. // @match https://mega.io/*
  16. // @match https://mega.is/*
  17. // @match https://mega.nz/*
  18. // @icon https://mega.nz/favicon.ico?v=3
  19. // @run-at document-end
  20. // @grant none
  21. // ==/UserScript==
  22. (function() {
  23. 'use strict';
  24. // Reference [Augular loaded detect]: https://stackoverflow.com/a/31970556/9182265
  25. var initWatcher = setInterval(function () {
  26. if (window.MegaUtils) {
  27. clearInterval(initWatcher);
  28. hookImport();
  29. hookFull();
  30. console.info('FUNtions Hooked!');
  31. }
  32. }, 500);
  33. })();
  34. var hookImport = function () {
  35. MegaUtils.prototype.checkGoingOverStorageQuota = function(opSize) {
  36. var promise = new MegaPromise();
  37. loadingDialog.pshow();
  38. M.getStorageQuota()
  39. .always(function() {
  40. loadingDialog.phide();
  41. })
  42. .fail(promise.reject.bind(promise))
  43. .done(function(data) {
  44. /*
  45. if (opSize === -1) {
  46. opSize = data.mstrg;
  47. }
  48. if (opSize > data.mstrg - data.cstrg) {
  49. var options = {custom: 1, title: l[882], body: l[16927]};
  50. M.showOverStorageQuota(data, options)
  51. .always(function() {
  52. promise.reject();
  53. });
  54. }
  55. else {
  56. */
  57. promise.resolve();
  58. });
  59. return promise;
  60. };
  61. }
  62. var hookFull = function () {
  63. FileManager.prototype.showOverStorageQuota = null;
  64. }
And paste it into the Tampermonkey user script section. Then click file & save

Now make sure that itā€™s enabled and youā€™re all set

As long as thereā€™s a remaining space in your cloud, you can import any link bypassing the 50GB limit.

This script works only from imported links.



>> Those interested to buy any kind of logs can inbox here ^_~
 
  • Worked
Reactions: watemen

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips

Similar threads

Top Bottom