Sleazy Fork is available in English.

Prompt.js for the web

prompt.js to change the web

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Prompt.js for the web
// @name:pt-br   Prompt.js para a web
// @namespace    greasyfork.org
// @version      1.0.0
// @description  prompt.js to change the web
// @description:pt-br prompt.js para mudar a web
// @match        *://*/*
// @license      MIT
// @run-at       document-end
// @grant        none
// ==/UserScript==

(function () {
  // Painel prompt.js
  const painel = document.createElement('div');
  Object.assign(painel.style, {
    position: 'fixed',
    bottom: '10px',
    right: '10px',
    width: '320px',
    background: '#222',
    color: '#fff',
    padding: '10px',
    borderRadius: '8px',
    zIndex: 9999,
    fontFamily: 'monospace'
  });

  // Área de texto = prompt.js
  const textarea = document.createElement('textarea');
  textarea.placeholder = 'Escreva seu código JS (prompt.js)...';
  Object.assign(textarea.style, {
    width: '100%',
    height: '120px',
    marginBottom: '8px',
    fontFamily: 'monospace'
  });

  // Botão Executar prompt.js
  const executar = document.createElement('button');
  executar.textContent = 'Executar prompt.js';
  Object.assign(executar.style, {
    width: '100%',
    padding: '6px',
    background: '#4caf50',
    color: '#fff',
    border: 'none',
    borderRadius: '4px',
    cursor: 'pointer'
  });

  executar.onclick = () => {
    try {
      new Function(textarea.value)();
    } catch (e) {
      alert('Erro: ' + e.message);
    }
  };

  painel.appendChild(textarea);
  painel.appendChild(executar);
  document.body.appendChild(painel);
})();