Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Tutorials Tutorial To Bypass Mega 50GB Import Limit

Millennium-Problem

✅ Verified Member
Member
Downloaded
59.9 GB
Uploaded
165.7 GB
Ratio
2.77
Seedbonus
1,669
Upload Count
1 (1)
Member for 6 years
Steps:


1.Create a new mega account with tempmail, verify it and login on your new MEGA account


2. To run the script you first need to add the Google Extension Tampermonkey 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 below


Mega.nz Script:
// ==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
// @match
// @match
// @match
// @match
// @match
// @match
// @match
// @icon
// @run-at document-end
// @grant none
// ==/UserScript==

(function() {
'use strict';
// Reference [Augular loaded detect]:
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;
}​


And paste it into the Tampermonkey userscript section. Then click file & save


Now just 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 work only from imported links.



Have Fun :)
 
M

Mr. Zsky

Bro it always shows this error ( ) on downloading after enabling the script
 

Millennium-Problem

✅ Verified Member
Member
Downloaded
59.9 GB
Uploaded
165.7 GB
Ratio
2.77
Seedbonus
1,669
Upload Count
1 (1)
Member for 6 years
Bro it always shows this error ( ) on downloading after enabling the script
Did ya Deleted all of the content that is already prepopulated ?
 
M

Mr. Zsky

Did ya Deleted all of the content that is already prepopulated
yup i did that, step by step what's mention on this thread, but still not working, i think its patched now can you please send screenshots or something
 
Last edited by a moderator:
Top