Last active
September 28, 2023 01:34
-
-
Save nhdinh/53066dc7b80e6b6702d56fee1937771f to your computer and use it in GitHub Desktop.
tampermonkey-vsp.user.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name BangGiaVPS | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Clean the web interface of the dashboard | |
// @author You | |
// @match https://banggia.vps.com.vn/chung-khoan/danh-muc | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=vps.com.vn | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js | |
// @grant none | |
// ==/UserScript== | |
(async () => { | |
'use strict'; | |
setTimeout(async () => { | |
// let collapse_button = $("div.price-board-menu-container > div.setting > a.collapse-button"); | |
$("div.price-board-menu-container > div.setting > a.collapse-button").dispatchEvent(new Event("click")); | |
}, 1000); | |
console.log("Hello"); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment