Twitter mobile file browser unlocked

Open the full file browser instead of just the recent media panel when attaching an image/video.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Twitter mobile file browser unlocked
// @namespace    http://tampermonkey.net/
// @version      2025-04-29
// @author       mesmere
// @description  Open the full file browser instead of just the recent media panel when attaching an image/video.
// @match        https://twitter.com/*
// @match        https://x.com/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        window.onurlchange
// @run-at       document-idle
// @license      MIT
// ==/UserScript==

function attempt(remainingElems = 2) {
    if (window.location.href.match(/^https:\/\/(twitter|x)\.com\/compose\/post$/) === null) {
        return;
    }
    const fileInputElems = document.querySelectorAll("input[type=file]");

    for (const fileInputElem of fileInputElems) {
        // Mobile browser file-picker behavior is determined by the HTMLInputElement.accept property.
        fileInputElem.accept = "";
    }

    // There are two separate file inputs on the page and one can load a long time before the other.
    if (fileInputElems.length < remainingElems) {
        window.setTimeout(attempt, 200, remainingElems - fileInputElems.length);
    }
}
attempt();
window.addEventListener("urlchange", attempt);