Skip to content

Releases: DeroXP/gfy

Alternative Bookmarklet [Recommened]

17 May 21:10
9c1e027
Compare
Choose a tag to compare
javascript:(async function() {   const scriptUrl = 'https://raw.githubusercontent.com/DeroXP/gfy/main/custom.js';   try {     const response = await fetch(scriptUrl);     if (!response.ok) {       throw new Error(`Failed to fetch script from ${scriptUrl}`);     }     const scriptText = await response.text();     if (scriptText.trim()) {       try {         eval(scriptText);       } catch (executionError) {         console.error('Execution error:', executionError.message);       }     } else {       throw new Error('Fetched script is empty');     }   } catch (error) {     console.error('Error:', error.message);   } })();

hearts and love to the newest update ppl ❤️

use this line [UPDATED]

03 Sep 19:27
42b8014
Compare
Choose a tag to compare
javascript:(async function() { const scriptUrl = 'https://raw.githubusercontent.com/DeroXP/gfy/main/custom.js'; try { const response = await fetch(scriptUrl); if (!response.ok) { throw new Error(`Failed to fetch script from ${scriptUrl}`); } const scriptText = await response.text(); if (scriptText.trim()) { try { const scriptFunction = new Function(scriptText); scriptFunction(); console.log('Script executed successfully'); } catch (executionError) { console.error('Execution error:', executionError.message); } } else { throw new Error('Fetched script is empty'); } } catch (error) { console.error('Error:', error.message); }})();

used for developer.