Digivice FileIsland 去预览图

预览图去除后,就可以看到纯粹的像素图画廊,然后就能方便得下载到本地,进行Digivice游戏创作啦!

当前为 2020-07-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         Digivice FileIsland 去预览图
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  预览图去除后,就可以看到纯粹的像素图画廊,然后就能方便得下载到本地,进行Digivice游戏创作啦!
// @author       lnwazg
// @match        http://lcd.withthewill.net/*
// @grant        none
// @require      https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    console.log("【Digivice】begin to remove preview imgs...");
    $("img.dmpic").remove();
    console.log("【Digivice】End remove preview title.");
})();