sis001 upload multiple file

sis001 upload multiple files

От 12.10.2023. Виж последната версия.

За да инсталирате този скрипт, трябва да имате инсталирано разширение като Tampermonkey, Greasemonkey или Violentmonkey.

За да инсталирате този скрипт, трябва да имате инсталирано разширение като Tampermonkey или Violentmonkey.

За да инсталирате този скрипт, трябва да имате инсталирано разширение като Tampermonkey или Violentmonkey.

За да инсталирате този скрипт, трябва да имате инсталирано разширение като Tampermonkey или Userscripts.

За да инсталирате скрипта, трябва да инсталирате разширение като Tampermonkey.

За да инсталирате този скрипт, трябва да имате инсталиран скриптов мениджър.

(Вече имам скриптов мениджър, искам да го инсталирам!)

За да инсталирате този стил, трябва да инсталирате разширение като Stylus.

За да инсталирате този стил, трябва да инсталирате разширение като Stylus.

За да инсталирате този стил, трябва да инсталирате разширение като Stylus.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

За да инсталирате този стил, трябва да имате инсталиран мениджър на потребителски стилове.

(Вече имам инсталиран мениджър на стиловете, искам да го инсталирам!)

// ==UserScript==
// @name         sis001 upload multiple file
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  sis001 upload multiple files
// @author       You
// @match        https://sis001.com/forum/post.php?action=newthread*
// @match        https://sis001.com/forum/post.php?action=edit*
// @match        https://sis001.com/forum/post.php?action=reply*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=sis001.com
// @grant        none
// @license MIT
// ==/UserScript==

var origainalInsertAttach

function main() {
    configMultipleInput()
    origainalInsertAttach = this.insertAttach
    this.insertAttach = customInsertAttach
}

function configMultipleInput() {
    console.log('configMultipleInput')
    Array.from(
        document
        .getElementById('posteditor_bottom')
        .getElementsByTagName('input')
    ).forEach((ele) => {
        if (ele.name == 'attach[]') {
            replaceInput(ele, (newInput) => {
                newInput.setAttribute('multiple', 'multiple')
            })
        }
    })
}

function customInsertAttach(id) {
    try {
        console.log('customInsertAttach')
        var input = document.getElementById('attach_' + id)
        let files = input.files
        Array.from(files)
            .forEach((file, index) => {
                let currentId = id + index
                let currentInput = document.getElementById('attach_' + currentId)
                replaceInput(currentInput, (newInput) => {
                    newInput.files = createFileList(file)
                })
                origainalInsertAttach(currentId)
            })
    } catch (e) {
        console.log(e)
    }
}

function replaceInput(old, op) {
    let newInput = old.cloneNode()
    newInput.onchange = old.onchange
    op(newInput)
    old.parentElement.replaceChild(newInput, old)
    return newInput
}

function createFileList(file) {
    let newList = new DataTransfer()
    newList.items.add(file)
    return newList.files
}

main()