virtualdesktop.org

...Why?

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 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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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         virtualdesktop.org
    // @namespace    http://virtualdesktop.org
    // @version      1.0
    // @description  ...Why?
    // @author       Zdrmonster1
    // @match        http://wibdows91.ddns.net/*
    // @match        http://wibdows91-devel.ddns.net/*
    // @match        http://wibdows91-lite.ddns.net/*
    // @license      MIT
    // ==/UserScript==
     
    // This script works on both the stable release and the beta release.
    // Created by HolyNetworkAdapter - https://holynetworkadapter.github.io
    function macosx() {
        var $macos = make_iframe_window({
            src: "http://virtualdesktop.org/complete/osx4/index.html",
            icons: iconsAtTwoSizes("desktop"),
            title: "MAC OS X",
            innerWidth: 800,
            innerHeight: 600,
        });
        return new Task($macos);
    }
     
    add_icon_not_via_filesystem({
        title: "Mac OS X",
        iconID: "desktop",
        open: macosx,
        shortcut: true
    });

    function win2k() {
        var $win2k = make_iframe_window({
            src: "http://virtualdesktop.org/complete/2k/index.html",
            icons: iconsAtTwoSizes("windows-update"),
            title: "Windows 2000",
            innerWidth: 800,
            innerHeight: 600,
        });
        return new Task($win2k);
    }
     
    add_icon_not_via_filesystem({
        title: "Windows 2000",
        iconID: "windows-update",
        open: win2k,
        shortcut: true
    });

    function winxpsp2() {
        var $winxp = make_iframe_window({
            src: "http://www.virtualdesktop.org/complete/xpsp2/index.html",
            icons: iconsAtTwoSizes("windows-update"),
            title: "Windows XP",
            innerWidth: 800,
            innerHeight: 600,
        });
        return new Task($winxp);
    }
     
    add_icon_not_via_filesystem({
        title: "Windows XP",
        iconID: "windows-update",
        open: winxpsp2,
        shortcut: true
    });