TurboWarp to Scratch

Adds a button on TurboWarp projects that links back to Scratch

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         TurboWarp to Scratch
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Adds a button on TurboWarp projects that links back to Scratch
// @author       c00lk1dha4k3r1 -- a scratch user
// @match        https://turbowarp.org/*
// @icon         https://scratch.mit.edu/favicon.ico
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to create the Scratch button
    function createScratchButton() {
        const projectId = window.location.pathname.split('/')[1];
        const scratchUrl = `https://scratch.mit.edu/projects/${projectId}`;

        const button = document.createElement('a');
        button.href = scratchUrl;
        button.innerText = 'Open in Scratch';
        button.style.position = 'fixed';
        button.style.top = '10px';
        button.style.right = '10px';
        button.style.padding = '10px 20px';
        button.style.backgroundColor = '#4d97ff';
        button.style.color = '#fff';
        button.style.border = 'none';
        button.style.borderRadius = '5px';
        button.style.textDecoration = 'none';
        button.style.fontSize = '16px';
        button.style.fontWeight = 'bold';
        button.style.cursor = 'pointer';
        button.style.zIndex = '1000';

        document.body.appendChild(button);
    }

    // Check if the document is fully loaded
    function checkLoaded() {
        if (document.readyState === 'complete') {
            createScratchButton();
        } else {
            window.addEventListener('load', createScratchButton);
        }
    }

    checkLoaded();
})();