Software Alternatives & Reviews

How to edit your live userscript in a text editor

Tampermonkey Fenix Web Server
  1. Greasemonkey compatible script manager.
    // ==UserScript== // @name Local user script loader // @namespace http://tampermonkey.net/ // @version 1.0 // @description My user script loader // @author Devously // @match http://*/* // @match https://*/* // @grant unsafeWindow // @noframes // ==/UserScript== Function ready(fn) { // Equivalent to JQuery document.ready (but in pure javascript) if (document.readyState !== 'loading') { fn(); } else if (document.addEventListener) { document.addEventListener('DOMContentLoaded', fn); } else { document.attachEvent('onreadystatechange', function () { if (document.readyState !== 'loading') fn(); }); } } Ready(function () { var el = document.createElement('script'); el.src = 'http://localhost:8000/myuserscript.user.js'; document.body.appendChild(el); });.

    #Browser Extension #Dark Mode #Developer Tools 132 social mentions

  2. Fenix is a desktop web server for developers.
    Install the Fenix desktop static web server (Mac and Windows).

    #Web And Application Servers #Development Tools #Web Servers 4 social mentions

Discuss: How to edit your live userscript in a text editor

Log in or Post with