21 lines
601 B
JavaScript
21 lines
601 B
JavaScript
// ==UserScript==
|
|
// @name Удалить область созданиея Readme
|
|
// @namespace http://tampermonkey.net/
|
|
// @version 0.1
|
|
// @description try to take over the world!
|
|
// @author You
|
|
// @match http://beeb0a7ae391.sn.mynetname.net:8020/apps/files/*
|
|
// @icon https://img.icons8.com/?size=512&id=2dCsJ8Pa920S&format=png
|
|
// @grant none
|
|
// ==/UserScript==
|
|
|
|
(function() {
|
|
'use strict';
|
|
setTimeout(function() {
|
|
|
|
document.querySelector("#app-content-files > div.filelist-header").remove()
|
|
|
|
}, 500);
|
|
|
|
// Your code here...
|
|
})(); |