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:
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 ^_~
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:
And paste it into the Tampermonkey user script section. Then click file & save
- // ==UserScript==
- // @name MEGA.nz Ultimately Import
- // @name:zh-TW MEGA.nz Ultimately Import /
- // @name:zh-CN MEGA.nz Ultimately Import
- // @namespace methusela
- // @version 0.1
- // @description Bypass import limit on Mega Web client & remove warning about the space usage
- // @author d0gkiller87
- // @match chrome-extension://bigefpfhnfcobdlfbedofhhaibnlghod/*
- // @match http://mega.co.nz/*
- // @match http://mega.io/*
- // @match http://mega.is/*
- // @match http://mega.nz/*
- // @match https://mega.co.nz/*
- // @match https://mega.io/*
- // @match https://mega.is/*
- // @match https://mega.nz/*
- // @icon https://mega.nz/favicon.ico?v=3
- // @run-at document-end
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // Reference [Augular loaded detect]: https://stackoverflow.com/a/31970556/9182265
- var initWatcher = setInterval(function () {
- if (window.MegaUtils) {
- clearInterval(initWatcher);
- hookImport();
- hookFull();
- console.info('FUNtions Hooked!');
- }
- }, 500);
- })();
- var hookImport = function () {
- MegaUtils.prototype.checkGoingOverStorageQuota = function(opSize) {
- var promise = new MegaPromise();
- loadingDialog.pshow();
- M.getStorageQuota()
- .always(function() {
- loadingDialog.phide();
- })
- .fail(promise.reject.bind(promise))
- .done(function(data) {
- /*
- if (opSize === -1) {
- opSize = data.mstrg;
- }
- if (opSize > data.mstrg - data.cstrg) {
- var options = {custom: 1, title: l[882], body: l[16927]};
- M.showOverStorageQuota(data, options)
- .always(function() {
- promise.reject();
- });
- }
- else {
- */
- promise.resolve();
- });
- return promise;
- };
- }
- var hookFull = function () {
- FileManager.prototype.showOverStorageQuota = null;
- }
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 ^_~