Dropbox convert to direct link

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

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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