js-tampermonkey-public-scripts/Удалить область созданиея Readme.user.js
Unkas Amanjolov 42b29defae first commit
2024-10-07 10:25:50 +05:00

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...
})();