🐛Extension Workaround Guide

In some cases, our extension may be flagged as suspicious by certain terminals. Even though our developers promptly fix the issue, the Chrome Store can take a few days to approve the update. To ensure uninterrupted use of our extension, please follow this guide:

1. Download Tampermonkey from the Chrome Store https://chromewebstore.google.com/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=it

2. Enable Developer mode in chrome extension page chrome://extensions/

3. Open Tampermonkey and click on Create a new script...

4. Paste the following strings:

// ==UserScript==
// @name         Unblock Nova and Bloom
// @namespace    http://tampermonkey.net/
// @version      2025-01-05
// @description  This will block Neo from blocking Nova and Bloom Extension
// @author       MarnyVal
// @match        https://neo.bullx.io/*
// @grant        unsafeWindow
// @run-at       document-start
// ==/UserScript==

(function() {
    'use strict';
    
    const originalSetInterval = unsafeWindow.setInterval;
    unsafeWindow.setInterval = function(callback, delay) {
        if (typeof callback === 'function' && callback.toString().includes("Suspicious extension found")) {
            console.log("Blocked suspicious setInterval call");
            return null;
        }
        return originalSetInterval(callback, delay);
    };
})();

5. Click on File and Save

6. Refresh the Bullx page.

Video Tutorial

Last updated