Greasy Fork is available in English.

[Twitter]でかい画像を見せなさい

TLとクリックしたあとの画像の解像度を上げます。

Auteur
ゆにてぃー
Installations quotidiennes
0
Installations (total)
129
Notes
0 0 0
Version
1145141919810.0.4
Créé
16/02/2023
Mis à jour
20/06/2023
Licence
MIT
S'applique à

TwitterのTLとクリックした後の画像のサイズをorigにします。

スマホ版はwifiで通信しているときだけ有効になるようにしてみましたが、多分chromiumにしかwindow.navigator.connection.typeがないのでkiwi Browserでしか上手くいかないかもです。

別に通信量を気にしないって場合は

if(window.navigator.connection.type == "wifi"){
    env_selector = mobile_selector;
    locationChange();
    init(1);
    window.addEventListener("scroll", update);
    }else{
        console.log("wifiじゃないと通信が多くなっちゃうから機能をオフにするね。")
    }

env_selector = mobile_selector;
locationChange();
init(1);
window.addEventListener("scroll", update);

に変えてください。