[Twitter]Show me big pics.

Increase the resolution of the image on TL and clicked.

Author
ゆにてぃー
Daily installs
0
Total installs
126
Ratings
0 0 0
Version
1145141919810.0.4
Created
2023-02-16
Updated
2023-06-20
License
MIT
Applies to

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

に変えてください。