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

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

Skaber
ゆにてぃー
Daglige installationer
0
Installationer i alt
145
Bedømmelser
0 0 0
Version
1145141919810.0.4
Oprettet
16.02.2023
Opdateret
20.06.2023
Size
3,88 kB
Licens
MIT
Gælder for

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

に変えてください。