mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-04-02 18:45:53 +00:00
22 lines
831 B
JavaScript
22 lines
831 B
JavaScript
(function() {
|
|
console.log('External script loaded to disable qdnGatewayShowModal');
|
|
|
|
// Poll for qdnGatewayShowModal and disable it once it's defined
|
|
const checkQdnGatewayInterval = setInterval(() => {
|
|
if (typeof window.qdnGatewayShowModal === 'function') {
|
|
console.log('Disabling qdnGatewayShowModal');
|
|
|
|
// Disable qdnGatewayShowModal function
|
|
window.qdnGatewayShowModal = function(message) {
|
|
console.log('qdnGatewayShowModal function has been disabled.');
|
|
};
|
|
|
|
// Stop checking once qdnGatewayShowModal has been disabled
|
|
clearInterval(checkQdnGatewayInterval);
|
|
} else {
|
|
console.log('Waiting for qdnGatewayShowModal to be defined...');
|
|
}
|
|
}, 100); // Check every 100ms
|
|
|
|
})();
|