First commit.

このコミットが含まれているのは:
2023-02-18 01:08:26 +09:00
コミット cb9304a030
2個のファイルの変更18行の追加0行の削除

3
README.md ノーマルファイル
ファイルの表示

@ -0,0 +1,3 @@
The internet is painful to use, so I fixed a few websoytes using the power of JS to make them more usable.
For Violentmonkey scripts: [Gitler](https://gitler.moe/ryo/stylus-css), [Ryogit](http://ryogit.i2p/?path=/stylus-css)

15
pokemon-infomation.com/script.js ノーマルファイル
ファイルの表示

@ -0,0 +1,15 @@
// ==UserScript==
// @name pokemon-infomation.com-anti-lazyload
// @namespace Violentmonkey Scripts
// @match *://*/*
// @grant none
// @version 1.0
// @author 寮
// @description 2023/2/18 0:17:36
// ==/UserScript==
let fuckingAnnoying = document.getElementsByClassName("lazyload");
for (let i = 0; i < fuckingAnnoying.length; i++) {
fuckingAnnoying[i].src = fuckingAnnoying[i].dataset.src;
}