Dropbox convert to direct link

Removes www and change https to http and dl=0 to dl=1

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Dropbox convert to direct link
// @namespace    http://greasyfork.org/de/users/7597
// @version      0.1
// @description  Removes www and change https to http and dl=0 to dl=1
// @author       Djamana
// @match        *://*.dropbox.com/*
// @-match        *://*.dropbox.com/sm/share_link/*
// @grant        none
// @icon         https://cf.dropboxstatic.com/static/images/icons/blue_dropbox_glyph-vflJ8-C5d.png
// ==/UserScript==


    function applyBeautifyDirectlink () {
        
        // Get
        var El     = document.querySelector('.text-input-input[value]')
        if (El) {


            // Transform
            var ElVal = El.value
            var NewVal = ElVal.replace(/(http)s?(:\/\/)www\.(.*dl=)0/, "$1$2$31")
            
            if (ElVal != NewVal) {
                
                // Set
                El.value = NewVal
            }
        }

        //var El = document.querySelector('.text-input-input[value]');El.value = El.value.replace(/(http)s?(:\/\/)www\.(.*dl=)0/, "$1$2$31")
    }
    
    setInterval (applyBeautifyDirectlink, 1000)